@quenty/humanoidspeed 12.22.3 → 12.22.4

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
+ ## [12.22.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.22.3...@quenty/humanoidspeed@12.22.4) (2025-03-21)
7
+
8
+ **Note:** Version bump only for package @quenty/humanoidspeed
9
+
10
+
11
+
12
+
13
+
6
14
  ## [12.22.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.22.2...@quenty/humanoidspeed@12.22.3) (2025-03-13)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/humanoidspeed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidspeed",
3
- "version": "12.22.3",
3
+ "version": "12.22.4",
4
4
  "description": "Handles humanoid speed in a centralized location",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,15 +28,15 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "@quenty/baseobject": "^10.8.0",
31
- "@quenty/binder": "^14.18.0",
32
- "@quenty/characterutils": "^12.17.0",
31
+ "@quenty/binder": "^14.18.1",
32
+ "@quenty/characterutils": "^12.17.1",
33
33
  "@quenty/loader": "^10.8.0",
34
- "@quenty/promise": "^10.10.0",
35
- "@quenty/rogue-humanoid": "^10.22.3",
36
- "@quenty/table": "^3.7.0"
34
+ "@quenty/promise": "^10.10.1",
35
+ "@quenty/rogue-humanoid": "^10.22.4",
36
+ "@quenty/table": "^3.7.1"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "454a991b6f45e1db7b8030e216a1a8d6efc34083"
41
+ "gitHead": "6b7c3e15e60cdb185986207b574e2b5591261e7a"
42
42
  }
@@ -15,7 +15,7 @@ local HumanoidSpeedClient = setmetatable({}, BaseObject)
15
15
  HumanoidSpeedClient.ClassName = "HumanoidSpeedClient"
16
16
  HumanoidSpeedClient.__index = HumanoidSpeedClient
17
17
 
18
- function HumanoidSpeedClient.new(humanoid)
18
+ function HumanoidSpeedClient.new(humanoid: Humanoid)
19
19
  local self = setmetatable(BaseObject.new(humanoid), HumanoidSpeedClient)
20
20
 
21
21
  return self
@@ -25,8 +25,8 @@ end
25
25
  Gets the player for this humanoid
26
26
  @return Player?
27
27
  ]=]
28
- function HumanoidSpeedClient:GetPlayer()
28
+ function HumanoidSpeedClient:GetPlayer(): Player?
29
29
  return CharacterUtils.getPlayerFromCharacter(self._obj)
30
30
  end
31
31
 
32
- return Binder.new("HumanoidSpeed", HumanoidSpeedClient)
32
+ return Binder.new("HumanoidSpeed", HumanoidSpeedClient)