@quenty/remoting 6.7.0 → 6.7.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.7.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@6.7.0...@quenty/remoting@6.7.1) (2023-07-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Pass 'memberName' in Remoting::Bind on the client ([7fc8b25](https://github.com/Quenty/NevermoreEngine/commit/7fc8b2568ebdc29792f3cda20c404c4366f2faae))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [6.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@6.6.1...@quenty/remoting@6.7.0) (2023-07-10)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/remoting
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/remoting",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.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": "6f807f6a62a16a3c4b1f1097161d776f6a5ee31e"
|
|
42
42
|
}
|
|
@@ -129,7 +129,7 @@ function Remoting:Bind(memberName, callback)
|
|
|
129
129
|
|
|
130
130
|
-- TODO: Cleanup if nothing else is expecting this
|
|
131
131
|
elseif RunService:IsClient() then
|
|
132
|
-
bindMaid:GiveTask(self:_observeRemoteFunctionBrio():Subscribe(function(brio)
|
|
132
|
+
bindMaid:GiveTask(self:_observeRemoteFunctionBrio(memberName):Subscribe(function(brio)
|
|
133
133
|
if brio:IsDead() then
|
|
134
134
|
return
|
|
135
135
|
end
|