@quenty/remoting 6.6.0 → 6.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +2 -2
- package/src/Shared/Interface/Remoting.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.6.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@6.6.0...@quenty/remoting@6.6.1) (2023-07-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* FireAllClients would call with memberName in it too ([ba1459a](https://github.com/Quenty/NevermoreEngine/commit/ba1459a5cd79de7b107c9d86782e2077262a3425))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [6.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@6.5.0...@quenty/remoting@6.6.0) (2023-06-17)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/remoting",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.1",
|
|
4
4
|
"description": "Global remoting retrieval system for Roblox (RemoteFunctions/RemoteEvents)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "84e95d3392dec0cb336676d875ace74f2ad7f726"
|
|
42
42
|
}
|
|
@@ -281,7 +281,7 @@ function Remoting:FireAllClients(memberName, ...)
|
|
|
281
281
|
assert(RunService:IsServer(), "FireAllClients must be called on server")
|
|
282
282
|
|
|
283
283
|
local remoteEvent = self:_getOrCreateRemoteEvent(memberName)
|
|
284
|
-
remoteEvent:FireAllClients(
|
|
284
|
+
remoteEvent:FireAllClients(...)
|
|
285
285
|
end
|
|
286
286
|
|
|
287
287
|
--[=[
|