@quenty/humanoidspeed 12.24.0-canary.ae8d76d.0 → 12.24.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,12 +3,12 @@
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.24.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.23.3...@quenty/humanoidspeed@12.24.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [12.24.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.23.3...@quenty/humanoidspeed@12.24.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Features
10
10
 
11
- * Add even more types ([ae8d76d](https://github.com/Quenty/NevermoreEngine/commit/ae8d76d996594e017ac4bfa19f3c064ebe307cd8))
11
+ * Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
12
12
 
13
13
 
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidspeed",
3
- "version": "12.24.0-canary.ae8d76d.0",
3
+ "version": "12.24.0",
4
4
  "description": "Handles humanoid speed in a centralized location",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,16 +27,16 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/baseobject": "10.8.3",
31
- "@quenty/binder": "14.20.0-canary.ae8d76d.0",
32
- "@quenty/characterutils": "12.19.0-canary.ae8d76d.0",
33
- "@quenty/loader": "10.8.3",
34
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
35
- "@quenty/rogue-humanoid": "10.24.0-canary.ae8d76d.0",
36
- "@quenty/table": "3.7.4"
30
+ "@quenty/baseobject": "^10.9.0",
31
+ "@quenty/binder": "^14.20.0",
32
+ "@quenty/characterutils": "^12.19.0",
33
+ "@quenty/loader": "^10.9.0",
34
+ "@quenty/promise": "^10.11.0",
35
+ "@quenty/rogue-humanoid": "^10.24.0",
36
+ "@quenty/table": "^3.8.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
41
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
42
42
  }
@@ -10,9 +10,9 @@ local BinderProvider = require("BinderProvider")
10
10
  return BinderProvider.new(script.Name, function(self, serviceBag)
11
11
  serviceBag:GetService(require("RogueHumanoidServiceClient"))
12
12
 
13
- --[=[
13
+ --[=[
14
14
  @prop HumanoidSpeed Binder<HumanoidSpeedClient>
15
15
  @within HumanoidSpeedBindersClient
16
16
  ]=]
17
17
  self:Add(serviceBag:GetService(require("HumanoidSpeedClient")))
18
- end)
18
+ end)
@@ -8,8 +8,8 @@
8
8
  local require = require(script.Parent.loader).load(script)
9
9
 
10
10
  local BaseObject = require("BaseObject")
11
- local CharacterUtils = require("CharacterUtils")
12
11
  local Binder = require("Binder")
12
+ local CharacterUtils = require("CharacterUtils")
13
13
 
14
14
  local HumanoidSpeedClient = setmetatable({}, BaseObject)
15
15
  HumanoidSpeedClient.ClassName = "HumanoidSpeedClient"
@@ -70,4 +70,4 @@ function HumanoidSpeed:ApplySpeedAdditive(amount: number)
70
70
  return self._properties.WalkSpeed:CreateAdditive(amount)
71
71
  end
72
72
 
73
- return PlayerHumanoidBinder.new("HumanoidSpeed", HumanoidSpeed)
73
+ return PlayerHumanoidBinder.new("HumanoidSpeed", HumanoidSpeed)
@@ -10,9 +10,9 @@ local BinderProvider = require("BinderProvider")
10
10
  return BinderProvider.new(script.Name, function(self, serviceBag)
11
11
  serviceBag:GetService(require("RogueHumanoidService"))
12
12
 
13
- --[=[
13
+ --[=[
14
14
  @prop HumanoidSpeed Binder<HumanoidSpeed>
15
15
  @within HumanoidSpeedBindersServer
16
16
  ]=]
17
17
  self:Add(serviceBag:GetService(require("HumanoidSpeed")))
18
- end)
18
+ end)