@quenty/humanoidtracker 8.4.0 → 8.4.1-canary.439.4c654fa.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
+ ## [8.4.1-canary.439.4c654fa.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@8.4.0...@quenty/humanoidtracker@8.4.1-canary.439.4c654fa.0) (2024-02-12)
7
+
8
+ **Note:** Version bump only for package @quenty/humanoidtracker
9
+
10
+
11
+
12
+
13
+
6
14
  # [8.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@8.3.0...@quenty/humanoidtracker@8.4.0) (2024-01-08)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidtracker",
3
- "version": "8.4.0",
3
+ "version": "8.4.1-canary.439.4c654fa.0",
4
4
  "description": "HumanoidTracker for Roblox - Tracks a player's character's humanoid",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^7.2.0",
29
- "@quenty/loader": "^7.3.0",
30
- "@quenty/maid": "^2.6.0",
31
- "@quenty/promise": "^7.2.0",
32
- "@quenty/signal": "^3.2.0",
33
- "@quenty/valueobject": "^8.4.0"
28
+ "@quenty/baseobject": "7.2.1-canary.439.4c654fa.0",
29
+ "@quenty/loader": "7.3.1-canary.439.4c654fa.0",
30
+ "@quenty/maid": "2.6.1-canary.439.4c654fa.0",
31
+ "@quenty/promise": "7.2.1-canary.439.4c654fa.0",
32
+ "@quenty/signal": "3.2.1-canary.439.4c654fa.0",
33
+ "@quenty/valueobject": "8.4.1-canary.439.4c654fa.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "075fb03a03f12ade8758f667767ba738204e0c4b"
38
+ "gitHead": "4c654faf9c66c5c9bcb277a24bf13c70719d3531"
39
39
  }
@@ -55,11 +55,15 @@ function HumanoidTracker.new(player)
55
55
  -- Tracks the alive humanoid, may be nil
56
56
  self.AliveHumanoid = self._maid:Add(ValueObject.new())
57
57
 
58
- self._maid:GiveTask(self.Humanoid.Changed:Connect(function(newHumanoid, oldHumanoid, maid)
58
+ self._maid:GiveTask(self.Humanoid.Changed:Connect(function(newHumanoid, oldHumanoid)
59
+ local maid = Maid.new()
60
+
59
61
  if not self.Destroy then
60
62
  return
61
63
  end
62
64
  self:_handleHumanoidChanged(newHumanoid, oldHumanoid, maid)
65
+
66
+ self._maid._current = maid
63
67
  end))
64
68
 
65
69
  self._maid:GiveTask(self._player:GetPropertyChangedSignal("Character"):Connect(function()