@quenty/humanoidtracker 13.4.0 → 13.5.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.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.4.0...@quenty/humanoidtracker@13.5.0) (2024-09-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Handle HumanoidTrackerService not having stuff ([f3c1292](https://github.com/Quenty/NevermoreEngine/commit/f3c12926658a0c5ff0cff60c21f3b5278b04b086))
12
+
13
+
14
+
15
+
16
+
6
17
  # [13.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.3.0...@quenty/humanoidtracker@13.4.0) (2024-08-09)
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.4.0",
3
+ "version": "13.5.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.3.0",
29
- "@quenty/loader": "^10.3.0",
30
- "@quenty/maid": "^3.2.0",
31
- "@quenty/promise": "^10.3.0",
32
- "@quenty/signal": "^7.3.0",
33
- "@quenty/valueobject": "^13.4.0"
28
+ "@quenty/baseobject": "^10.4.0",
29
+ "@quenty/loader": "^10.4.0",
30
+ "@quenty/maid": "^3.3.0",
31
+ "@quenty/promise": "^10.4.0",
32
+ "@quenty/signal": "^7.4.0",
33
+ "@quenty/valueobject": "^13.5.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "ba466bdbc05c42fb607cf5e228c16339201d21d7"
38
+ "gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
39
39
  }
@@ -36,6 +36,10 @@ function HumanoidTrackerService:GetHumanoidTracker(player)
36
36
 
37
37
  player = player or Players.LocalPlayer
38
38
 
39
+ if player == nil then
40
+ return nil
41
+ end
42
+
39
43
  if self._humanoidTrackerMap[player] then
40
44
  return self._humanoidTrackerMap[player]
41
45
  else