@quenty/equippedtracker 13.23.6 → 13.23.7-canary.90de6eb.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,14 @@
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
+ ## [13.23.7-canary.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/equippedtracker@13.23.6...@quenty/equippedtracker@13.23.7-canary.90de6eb.0) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/equippedtracker
9
+
10
+
11
+
12
+
13
+
6
14
  ## [13.23.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/equippedtracker@13.23.5...@quenty/equippedtracker@13.23.6) (2025-12-31)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/equippedtracker
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/equippedtracker",
3
- "version": "13.23.6",
3
+ "version": "13.23.7-canary.90de6eb.0",
4
4
  "description": "Tracks the equipped player of a tool",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,13 +26,13 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/characterutils": "^12.22.5",
30
- "@quenty/loader": "^10.9.0",
31
- "@quenty/maid": "^3.5.0",
32
- "@quenty/valueobject": "^13.21.6"
29
+ "@quenty/characterutils": "12.22.6-canary.90de6eb.0",
30
+ "@quenty/loader": "10.9.1-canary.90de6eb.0",
31
+ "@quenty/maid": "3.5.1-canary.90de6eb.0",
32
+ "@quenty/valueobject": "13.21.7-canary.90de6eb.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
37
+ "gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
38
38
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Tracks the equipped player of a tool
3
4
  @class EquippedTracker
@@ -18,10 +19,11 @@ EquippedTracker.__index = EquippedTracker
18
19
  @param tool Tool
19
20
  @return EquippedTracker
20
21
  ]=]
21
- function EquippedTracker.new(tool)
22
+ function EquippedTracker.new(tool: Tool)
23
+ assert(tool and tool:IsA("Tool"), "Bad tool")
24
+
22
25
  local self = setmetatable({}, EquippedTracker)
23
26
 
24
- assert(tool and tool:IsA("Tool"), "Bad tool")
25
27
  self._tool = tool
26
28
 
27
29
  self._maid = Maid.new()