@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 CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  ## Install
4
4
  Install with [wally](https://wally.run/):\
5
- `Replion = "shouxtech/replion@1.0.2"`
5
+ `Replion = "shouxtech/replion@1.0.4"`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/replion",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "",
5
5
  "main": "src/init.lua",
6
6
  "scripts": {},
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]); -- Note: Sends improper 'old' argument due to shallow copy optimization.
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
@@ -37,4 +37,4 @@ declare namespace Replion {
37
37
  }
38
38
  }
39
39
 
40
- export = Replion;
40
+ export = Replion;