@quenty/playerbinder 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 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/playerbinder@9.1.1...@quenty/playerbinder@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/playerbinder@9.1.0...@quenty/playerbinder@9.1.1) (2023-10-28)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/playerbinder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/playerbinder",
3
- "version": "9.1.1",
3
+ "version": "9.2.0",
4
4
  "description": "Binds the given class to each player in the game",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,11 +25,11 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/binder": "^9.1.1",
29
- "@quenty/loader": "^7.0.0"
28
+ "@quenty/binder": "^9.2.0",
29
+ "@quenty/loader": "^7.1.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "440aca7ce2b50b74317ee05fdc0b8d1e58001af3"
34
+ "gitHead": "2c2dbbc0cb2fbb46b4f3270c559c63890fe18b26"
35
35
  }
@@ -34,10 +34,10 @@ function PlayerBinder:Start()
34
34
  local results = { getmetatable(PlayerBinder).Start(self) }
35
35
 
36
36
  self._maid:GiveTask(Players.PlayerAdded:Connect(function(player)
37
- self:Bind(player)
37
+ self:Tag(player)
38
38
  end))
39
39
  for _, item in pairs(Players:GetPlayers()) do
40
- self:Bind(item)
40
+ self:Tag(item)
41
41
  end
42
42
 
43
43
  return unpack(results)