@quenty/playerhumanoidbinder 14.19.4-canary.559.339cfa7.0 → 14.20.0-canary.0a5db80.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,25 +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
|
-
|
|
6
|
+
# [14.20.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.19.2...@quenty/playerhumanoidbinder@14.20.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* Additional type checking updates ([
|
|
11
|
+
* Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
### Features
|
|
15
15
|
|
|
16
|
-
* Add even more types ([
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [14.19.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.19.2...@quenty/playerhumanoidbinder@14.19.3) (2025-04-10)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @quenty/playerhumanoidbinder
|
|
16
|
+
* Add even more types ([0a5db80](https://github.com/Quenty/NevermoreEngine/commit/0a5db8004684dc3e76fd5944599a22602d48cfa9))
|
|
25
17
|
|
|
26
18
|
|
|
27
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/playerhumanoidbinder",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.20.0-canary.0a5db80.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.
|
|
29
|
-
"@quenty/humanoidtracker": "13.
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/valueobject": "13.
|
|
28
|
+
"@quenty/binder": "14.20.0-canary.0a5db80.0",
|
|
29
|
+
"@quenty/humanoidtracker": "13.18.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/valueobject": "13.18.0-canary.0a5db80.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
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 HumanoidTrackerService = require("HumanoidTrackerService")
|
|
12
11
|
local Maid = require("Maid")
|
|
13
|
-
local ServiceBag = require("ServiceBag")
|
|
14
12
|
local ValueObject = require("ValueObject")
|
|
13
|
+
local HumanoidTrackerService = require("HumanoidTrackerService")
|
|
14
|
+
local ServiceBag = require("ServiceBag")
|
|
15
15
|
|
|
16
16
|
local PlayerHumanoidBinder = setmetatable({}, Binder)
|
|
17
17
|
PlayerHumanoidBinder.ClassName = "PlayerHumanoidBinder"
|
|
@@ -136,4 +136,5 @@ function PlayerHumanoidBinder:_handlePlayerAdded(playerMaid, player)
|
|
|
136
136
|
playerMaid[player] = maid
|
|
137
137
|
end
|
|
138
138
|
|
|
139
|
-
|
|
139
|
+
|
|
140
|
+
return PlayerHumanoidBinder
|