@quenty/humanoidtracker 13.21.2 → 13.21.3

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
+ ## [13.21.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.21.2...@quenty/humanoidtracker@13.21.3) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/humanoidtracker
9
+
10
+
11
+
12
+
13
+
6
14
  ## [13.21.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.21.1...@quenty/humanoidtracker@13.21.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/humanoidtracker
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidtracker",
3
- "version": "13.21.2",
3
+ "version": "13.21.3",
4
4
  "description": "HumanoidTracker for Roblox - Tracks a player's character's humanoid",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -31,10 +31,10 @@
31
31
  "@quenty/maid": "^3.5.0",
32
32
  "@quenty/promise": "^10.12.0",
33
33
  "@quenty/signal": "^7.11.1",
34
- "@quenty/valueobject": "^13.21.2"
34
+ "@quenty/valueobject": "^13.21.3"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
39
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
40
40
  }
@@ -16,33 +16,35 @@ local HumanoidTracker = setmetatable({}, BaseObject)
16
16
  HumanoidTracker.ClassName = "HumanoidTracker"
17
17
  HumanoidTracker.__index = HumanoidTracker
18
18
 
19
- export type HumanoidTracker = typeof(setmetatable(
20
- {} :: {
21
- _player: Player,
19
+ export type HumanoidTracker =
20
+ typeof(setmetatable(
21
+ {} :: {
22
+ _player: Player,
22
23
 
23
- --[=[
24
+ --[=[
24
25
  Fires when the humanoid dies
25
26
  @prop HumanoidDied Signal<Humanoid>
26
27
  @within HumanoidTracker
27
28
  ]=]
28
- HumanoidDied: Signal.Signal<Humanoid?>,
29
+ HumanoidDied: Signal.Signal<Humanoid?>,
29
30
 
30
- --[=[
31
+ --[=[
31
32
  Current humanoid which is alive
32
33
  @prop AliveHumanoid ValueObject<Humanoid>
33
34
  @within HumanoidTracker
34
35
  ]=]
35
- AliveHumanoid: ValueObject.ValueObject<Humanoid?>,
36
+ AliveHumanoid: ValueObject.ValueObject<Humanoid?>,
36
37
 
37
- --[=[
38
+ --[=[
38
39
  Current humanoid
39
40
  @prop Humanoid ValueObject<Humanoid>
40
41
  @within HumanoidTracker
41
42
  ]=]
42
- Humanoid: ValueObject.ValueObject<Humanoid?>,
43
- },
44
- { __index = HumanoidTracker }
45
- )) & BaseObject.BaseObject
43
+ Humanoid: ValueObject.ValueObject<Humanoid?>,
44
+ },
45
+ { __index = HumanoidTracker }
46
+ ))
47
+ & BaseObject.BaseObject
46
48
 
47
49
  --[=[
48
50
  Tracks the player's current humanoid