@quenty/playerhumanoidbinder 9.1.1 → 9.2.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 +11 -0
- package/package.json +6 -6
- package/src/Server/PlayerCharacterBinder.lua +2 -2
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
|
+
# [9.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@9.1.1...@quenty/playerhumanoidbinder@9.2.0) (2023-12-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Use :Tag() instead of :Bind() ([99c9e13](https://github.com/Quenty/NevermoreEngine/commit/99c9e13f4489af2fd6bb677324e4640c0a2cb4e6))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [9.1.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@9.1.0...@quenty/playerhumanoidbinder@9.1.1) (2023-10-28)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/playerhumanoidbinder
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/playerhumanoidbinder",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.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": "^9.
|
|
29
|
-
"@quenty/humanoidtracker": "^8.
|
|
30
|
-
"@quenty/loader": "^7.
|
|
28
|
+
"@quenty/binder": "^9.2.0",
|
|
29
|
+
"@quenty/humanoidtracker": "^8.2.0",
|
|
30
|
+
"@quenty/loader": "^7.1.0",
|
|
31
31
|
"@quenty/maid": "^2.6.0",
|
|
32
|
-
"@quenty/valueobject": "^8.
|
|
32
|
+
"@quenty/valueobject": "^8.2.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "2c2dbbc0cb2fbb46b4f3270c559c63890fe18b26"
|
|
38
38
|
}
|
|
@@ -121,11 +121,11 @@ function PlayerCharacterBinder:_handlePlayerAdded(playerMaid, player)
|
|
|
121
121
|
local maid = Maid.new()
|
|
122
122
|
|
|
123
123
|
maid:GiveTask(player.CharacterAdded:Connect(function(character)
|
|
124
|
-
self:
|
|
124
|
+
self:Tag(character)
|
|
125
125
|
end))
|
|
126
126
|
|
|
127
127
|
if player.Character then
|
|
128
|
-
self:
|
|
128
|
+
self:Tag(player.Character)
|
|
129
129
|
end
|
|
130
130
|
|
|
131
131
|
playerMaid[player] = maid
|