@quenty/humanoidtracker 13.17.3 → 13.17.4-canary.11a5dcf.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,17 @@
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.17.4-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.17.3...@quenty/humanoidtracker@13.17.4-canary.11a5dcf.0) (2025-05-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [13.17.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.17.2...@quenty/humanoidtracker@13.17.3) (2025-04-10)
7
18
 
8
19
  **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.17.3",
3
+ "version": "13.17.4-canary.11a5dcf.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": "^10.8.3",
29
- "@quenty/loader": "^10.8.3",
30
- "@quenty/maid": "^3.4.3",
31
- "@quenty/promise": "^10.10.4",
32
- "@quenty/signal": "^7.10.3",
33
- "@quenty/valueobject": "^13.17.3"
28
+ "@quenty/baseobject": "10.8.4-canary.11a5dcf.0",
29
+ "@quenty/loader": "10.8.4-canary.11a5dcf.0",
30
+ "@quenty/maid": "3.4.4-canary.11a5dcf.0",
31
+ "@quenty/promise": "10.10.5-canary.11a5dcf.0",
32
+ "@quenty/signal": "7.10.4-canary.11a5dcf.0",
33
+ "@quenty/valueobject": "13.17.4-canary.11a5dcf.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
38
+ "gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
39
39
  }
@@ -6,11 +6,11 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
+ local BaseObject = require("BaseObject")
9
10
  local Maid = require("Maid")
11
+ local Promise = require("Promise")
10
12
  local Signal = require("Signal")
11
13
  local ValueObject = require("ValueObject")
12
- local Promise = require("Promise")
13
- local BaseObject = require("BaseObject")
14
14
 
15
15
  local HumanoidTracker = setmetatable({}, BaseObject)
16
16
  HumanoidTracker.ClassName = "HumanoidTracker"
@@ -180,4 +180,4 @@ function HumanoidTracker._handleHumanoidChanged(self: HumanoidTracker, newHumano
180
180
  end))
181
181
  end
182
182
 
183
- return HumanoidTracker
183
+ return HumanoidTracker
@@ -9,10 +9,10 @@ local require = require(script.Parent.loader).load(script)
9
9
 
10
10
  local Players = game:GetService("Players")
11
11
 
12
+ local Brio = require("Brio")
12
13
  local HumanoidTracker = require("HumanoidTracker")
13
14
  local Maid = require("Maid")
14
- local _Observable = require("Observable")
15
- local _Brio = require("Brio")
15
+ local Observable = require("Observable")
16
16
 
17
17
  local HumanoidTrackerService = {}
18
18
  HumanoidTrackerService.ServiceName = "HumanoidTrackerService"
@@ -80,7 +80,7 @@ end
80
80
  @param player Player? -- If not set, uses local player
81
81
  @return Observable<Humanoid?>
82
82
  ]=]
83
- function HumanoidTrackerService:ObserveHumanoid(player: Player?): _Observable.Observable<Humanoid?>
83
+ function HumanoidTrackerService:ObserveHumanoid(player: Player?): Observable.Observable<Humanoid?>
84
84
  assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
85
85
 
86
86
  player = player or Players.LocalPlayer
@@ -94,7 +94,7 @@ end
94
94
  @param player Player? -- If not set, uses local player
95
95
  @return Observable<Brio<Humanoid>>
96
96
  ]=]
97
- function HumanoidTrackerService:ObserveHumanoidBrio(player: Player?): _Observable.Observable<_Brio.Brio<Humanoid>>
97
+ function HumanoidTrackerService:ObserveHumanoidBrio(player: Player?): Observable.Observable<Brio.Brio<Humanoid>>
98
98
  assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
99
99
 
100
100
  player = player or Players.LocalPlayer
@@ -123,7 +123,7 @@ end
123
123
  @param player Player? -- If not set, uses local player
124
124
  @return Observable<Humanoid?>
125
125
  ]=]
126
- function HumanoidTrackerService:ObserveAliveHumanoid(player: Player?): _Observable.Observable<Humanoid?>
126
+ function HumanoidTrackerService:ObserveAliveHumanoid(player: Player?): Observable.Observable<Humanoid?>
127
127
  assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
128
128
 
129
129
  player = player or Players.LocalPlayer