@rbxts/humanoid-stat-manager 1.0.2 → 1.0.3
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/out/index.d.ts +1 -1
- package/out/init.luau +4 -1
- package/package.json +1 -1
package/out/index.d.ts
CHANGED
package/out/init.luau
CHANGED
|
@@ -101,6 +101,10 @@ local addModifierServer, addModifierClient
|
|
|
101
101
|
local HumanoidStatManager = {}
|
|
102
102
|
do
|
|
103
103
|
local _container = HumanoidStatManager
|
|
104
|
+
local function init()
|
|
105
|
+
init()
|
|
106
|
+
end
|
|
107
|
+
_container.init = init
|
|
104
108
|
local function addModifier(char, modifier)
|
|
105
109
|
init()
|
|
106
110
|
if IS_SERVER then
|
|
@@ -172,6 +176,5 @@ function addModifierClient(char, modifier)
|
|
|
172
176
|
end
|
|
173
177
|
end
|
|
174
178
|
return {
|
|
175
|
-
init = init,
|
|
176
179
|
HumanoidStatManager = HumanoidStatManager,
|
|
177
180
|
}
|