@rbxts/replion 1.0.20 → 1.0.21

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.20"`
5
+ `Replion = "shouxtech/replion@1.0.21"`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/replion",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "",
5
5
  "main": "src/init.lua",
6
6
  "scripts": {},
package/src/Server.lua CHANGED
@@ -162,6 +162,10 @@ function Server:set(path: { string }, value: any)
162
162
  setNestedValue(thisUpdate, path, newValue);
163
163
  self._base._allSignal:Fire(self._base.data, thisUpdate);
164
164
  end;
165
+
166
+ if newValue == nil then
167
+ self._base:_pruneSignalTree(path);
168
+ end;
165
169
  end;
166
170
 
167
171
  function Server:destroy()