@quenty/playerhumanoidbinder 14.20.0-canary.ae8d76d.0 → 14.20.1-canary.d9ea7a3.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,7 +3,15 @@
|
|
|
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
|
-
|
|
6
|
+
## [14.20.1-canary.d9ea7a3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.20.0...@quenty/playerhumanoidbinder@14.20.1-canary.d9ea7a3.0) (2025-05-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/playerhumanoidbinder
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [14.20.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.19.3...@quenty/playerhumanoidbinder@14.20.0) (2025-05-10)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Bug Fixes
|
|
@@ -13,7 +21,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
13
21
|
|
|
14
22
|
### Features
|
|
15
23
|
|
|
16
|
-
* Add even more types ([
|
|
24
|
+
* Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
|
|
17
25
|
|
|
18
26
|
|
|
19
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/playerhumanoidbinder",
|
|
3
|
-
"version": "14.20.
|
|
3
|
+
"version": "14.20.1-canary.d9ea7a3.0",
|
|
4
4
|
"description": "Binder that will automatically bind to each player's humanoid",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/binder": "14.20.
|
|
29
|
-
"@quenty/humanoidtracker": "13.18.0
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/valueobject": "13.18.0
|
|
28
|
+
"@quenty/binder": "14.20.1-canary.d9ea7a3.0",
|
|
29
|
+
"@quenty/humanoidtracker": "13.18.0",
|
|
30
|
+
"@quenty/loader": "10.9.0",
|
|
31
|
+
"@quenty/maid": "3.5.0",
|
|
32
|
+
"@quenty/valueobject": "13.18.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "d9ea7a314a7d50712e6abac75d29901c1edea556"
|
|
38
38
|
}
|
|
@@ -8,10 +8,10 @@ local require = require(script.Parent.loader).load(script)
|
|
|
8
8
|
local Players = game:GetService("Players")
|
|
9
9
|
|
|
10
10
|
local Binder = require("Binder")
|
|
11
|
-
local Maid = require("Maid")
|
|
12
|
-
local ValueObject = require("ValueObject")
|
|
13
11
|
local HumanoidTrackerService = require("HumanoidTrackerService")
|
|
12
|
+
local Maid = require("Maid")
|
|
14
13
|
local ServiceBag = require("ServiceBag")
|
|
14
|
+
local ValueObject = require("ValueObject")
|
|
15
15
|
|
|
16
16
|
local PlayerHumanoidBinder = setmetatable({}, Binder)
|
|
17
17
|
PlayerHumanoidBinder.ClassName = "PlayerHumanoidBinder"
|
|
@@ -136,5 +136,4 @@ function PlayerHumanoidBinder:_handlePlayerAdded(playerMaid, player)
|
|
|
136
136
|
playerMaid[player] = maid
|
|
137
137
|
end
|
|
138
138
|
|
|
139
|
-
|
|
140
|
-
return PlayerHumanoidBinder
|
|
139
|
+
return PlayerHumanoidBinder
|