@rbxts/replion 1.0.2 → 1.0.4
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/README.md +1 -1
- package/package.json +1 -1
- package/src/Client.lua +1 -1
- package/src/index.d.ts +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/src/Client.lua
CHANGED
|
@@ -97,7 +97,7 @@ function Client:_applyUpdates(updates: Shared.GenericDataTable)
|
|
|
97
97
|
anyChanged = true
|
|
98
98
|
local signal = self._signals[key];
|
|
99
99
|
if signal then
|
|
100
|
-
signal:Fire(self.data[key], self.data[key]); --
|
|
100
|
+
signal:Fire(self.data[key], self.data[key]); -- Warning: Sends improper 'old' argument due to shallow copy optimization.
|
|
101
101
|
end;
|
|
102
102
|
elseif self.data[key] ~= oldValue then
|
|
103
103
|
anyChanged = true;
|
package/src/index.d.ts
CHANGED