@rbxts/covenant 1.4.1 → 1.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/covenant",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "main": "src/init.luau",
5
5
  "scripts": {
6
6
  "build": "rbxtsc",
@@ -29,6 +29,7 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "@rbxts/compiler-types": "^3.0.0-types.0",
32
+ "@rbxts/covenant": "^1.4.1",
32
33
  "@rbxts/types": "^1.0.860",
33
34
  "@typescript-eslint/eslint-plugin": "^8.35.0",
34
35
  "@typescript-eslint/parser": "^8.35.0",
package/src/covenant.luau CHANGED
@@ -644,7 +644,7 @@ do
644
644
  local parentEntityTrackerComponent = self:worldInternalComponent()
645
645
  local parentComponent = self:worldInternalComponent()
646
646
  self:defineComponentNetworkBehavior(parentComponent, replicated, predictionValidator)
647
- self:defineComponentNetworkBehavior(parentEntityTrackerComponent, replicated, predictionValidator)
647
+ self:defineComponentNetworkBehavior(parentEntityTrackerComponent, replicated, false)
648
648
  local queryParentComponent = self:worldQuery(parentComponent):cached()
649
649
  local willUpdate = true
650
650
  local function indicateUpdate()