@quenty/playerhumanoidbinder 14.17.0 → 14.17.1-canary.531.760eab8.0

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 CHANGED
@@ -3,6 +3,14 @@
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
+ ## [14.17.1-canary.531.760eab8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.17.0...@quenty/playerhumanoidbinder@14.17.1-canary.531.760eab8.0) (2025-01-22)
7
+
8
+ **Note:** Version bump only for package @quenty/playerhumanoidbinder
9
+
10
+
11
+
12
+
13
+
6
14
  # [14.17.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.16.0...@quenty/playerhumanoidbinder@14.17.0) (2024-12-15)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/playerhumanoidbinder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/playerhumanoidbinder",
3
- "version": "14.17.0",
3
+ "version": "14.17.1-canary.531.760eab8.0",
4
4
  "description": "Binder that will automatically bind to each player's humanoid",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,14 +25,14 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/binder": "^14.17.0",
29
- "@quenty/humanoidtracker": "^13.15.0",
30
- "@quenty/loader": "^10.7.1",
31
- "@quenty/maid": "^3.4.0",
32
- "@quenty/valueobject": "^13.15.0"
28
+ "@quenty/binder": "14.17.0",
29
+ "@quenty/humanoidtracker": "13.15.0",
30
+ "@quenty/loader": "10.7.1",
31
+ "@quenty/maid": "3.4.0",
32
+ "@quenty/valueobject": "13.15.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "0a20ace4dc7d38f8c889bf73b716b33e8a767c54"
37
+ "gitHead": "760eab89580cb2ebf422457778c424fd3ab28f00"
38
38
  }
@@ -38,8 +38,7 @@ function PlayerCharacterBinder:Init(...)
38
38
  getmetatable(PlayerCharacterBinder).Init(self, ...)
39
39
 
40
40
  if not self._shouldTag then
41
- self._shouldTag = ValueObject.new(true, "boolean")
42
- self._maid:GiveTask(self._shouldTag)
41
+ self._shouldTag = self._maid:Add(ValueObject.new(true, "boolean"))
43
42
  end
44
43
  end
45
44
 
@@ -44,8 +44,7 @@ function PlayerHumanoidBinder:Init(serviceBag, ...)
44
44
  self._humanoidTrackerService = self._serviceBag:GetService(HumanoidTrackerService)
45
45
 
46
46
  if not self._shouldTag then
47
- self._shouldTag = ValueObject.new(true, "boolean")
48
- self._maid:GiveTask(self._shouldTag)
47
+ self._shouldTag = self._maid:Add(ValueObject.new(true, "boolean"))
49
48
  end
50
49
  end
51
50