@quenty/playerbinder 14.19.0-canary.544.de8fcee.0 → 14.19.1-canary.545.2374fb2.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,26 @@
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
- # [14.19.0-canary.544.de8fcee.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerbinder@14.18.1...@quenty/playerbinder@14.19.0-canary.544.de8fcee.0) (2025-04-01)
6
+ ## [14.19.1-canary.545.2374fb2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerbinder@14.19.0...@quenty/playerbinder@14.19.1-canary.545.2374fb2.0) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
17
+ # [14.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerbinder@14.18.2...@quenty/playerbinder@14.19.0) (2025-04-02)
18
+
19
+ **Note:** Version bump only for package @quenty/playerbinder
20
+
21
+
22
+
23
+
24
+
25
+ ## [14.18.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerbinder@14.18.1...@quenty/playerbinder@14.18.2) (2025-03-31)
7
26
 
8
27
  **Note:** Version bump only for package @quenty/playerbinder
9
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/playerbinder",
3
- "version": "14.19.0-canary.544.de8fcee.0",
3
+ "version": "14.19.1-canary.545.2374fb2.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": "14.19.0-canary.544.de8fcee.0",
29
- "@quenty/loader": "10.8.0"
28
+ "@quenty/binder": "14.19.1-canary.545.2374fb2.0",
29
+ "@quenty/loader": "10.8.1-canary.545.2374fb2.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "de8fcee995fcdae464964357b4c770c03f4c7e03"
34
+ "gitHead": "2374fb2b043cfbe0e9b507b3316eec46a4e353a0"
35
35
  }
@@ -36,7 +36,7 @@ function PlayerBinder:Start()
36
36
  self._maid:GiveTask(Players.PlayerAdded:Connect(function(player)
37
37
  self:Tag(player)
38
38
  end))
39
- for _, item in pairs(Players:GetPlayers()) do
39
+ for _, item in Players:GetPlayers() do
40
40
  self:Tag(item)
41
41
  end
42
42