@rbxts/humanoid-stat-manager 1.0.19 → 1.0.20

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.
Files changed (2) hide show
  1. package/out/init.luau +2 -2
  2. package/package.json +1 -1
package/out/init.luau CHANGED
@@ -4,9 +4,9 @@ local RunService = game:GetService("RunService")
4
4
  -- 2. The Runtime Value (For Logic)
5
5
  local implementation
6
6
  if RunService:IsServer() then
7
- implementation = require(script.Parent:WaitForChild("server"))
7
+ implementation = require(script:WaitForChild("server"))
8
8
  else
9
- implementation = require(script.Parent:WaitForChild("client"))
9
+ implementation = require(script:WaitForChild("client"))
10
10
  end
11
11
  -- 3. Export as the same name (Declaration Merging)
12
12
  local HumanoidStatManager = implementation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/humanoid-stat-manager",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "",
5
5
  "main": "out/init.lua",
6
6
  "scripts": {