@quenty/humanoidspeed 11.0.0 → 12.0.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
+ # [12.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@11.0.0...@quenty/humanoidspeed@12.0.0) (2024-02-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix humanioid speed service ([ee93033](https://github.com/Quenty/NevermoreEngine/commit/ee93033b6a01f0103ddb01248a885e1b5d265d8a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [11.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@10.0.0...@quenty/humanoidspeed@11.0.0) (2024-02-14)
7
18
 
8
19
  **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": "11.0.0",
3
+ "version": "12.0.0",
4
4
  "description": "Handles humanoid speed in a centralized location",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -32,11 +32,11 @@
32
32
  "@quenty/characterutils": "^12.0.0",
33
33
  "@quenty/loader": "^10.0.0",
34
34
  "@quenty/promise": "^10.0.0",
35
- "@quenty/rogue-humanoid": "^9.0.0",
35
+ "@quenty/rogue-humanoid": "^10.0.0",
36
36
  "@quenty/table": "^3.4.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "63f949a67b77d3edc98b358cace163da8c789e9f"
41
+ "gitHead": "76dd93ee8ce79e7e156f1c39978bf72224f6dd05"
42
42
  }
@@ -9,7 +9,7 @@ local require = require(script.Parent.loader).load(script)
9
9
 
10
10
  local BaseObject = require("BaseObject")
11
11
  local RogueHumanoidProperties = require("RogueHumanoidProperties")
12
- local Binder = require("Binder")
12
+ local PlayerHumanoidBinder = require("PlayerHumanoidBinder")
13
13
 
14
14
  local HumanoidSpeed = setmetatable({}, BaseObject)
15
15
  HumanoidSpeed.ClassName = "HumanoidSpeed"
@@ -61,4 +61,4 @@ function HumanoidSpeed:ApplySpeedAdditive(amount)
61
61
  return self._properties.WalkSpeed:CreateAdditive(amount)
62
62
  end
63
63
 
64
- return Binder.new("HumanoidSpeed", HumanoidSpeed)
64
+ return PlayerHumanoidBinder.new("HumanoidSpeed", HumanoidSpeed)