@rbxts/gravity-controller 1.0.4 → 1.0.5
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/GravityController.rbxmx +4 -1
- package/package.json +1 -1
package/GravityController.rbxmx
CHANGED
|
@@ -1571,7 +1571,10 @@ return function(humanoid, animate)
|
|
|
1571
1571
|
for prop, _ in pairs(DESC_ANIM_PROPS) do
|
|
1572
1572
|
if desc[prop] > 0 then
|
|
1573
1573
|
local lookFor = prop:sub(1, #prop - LENGTH):lower()
|
|
1574
|
-
animate:WaitForChild(lookFor)
|
|
1574
|
+
local child = animate:WaitForChild(lookFor, 5)
|
|
1575
|
+
if not child then
|
|
1576
|
+
warn("VerifyAnims: " .. lookFor .. " not found after 5s, skipping")
|
|
1577
|
+
end
|
|
1575
1578
|
end
|
|
1576
1579
|
end
|
|
1577
1580
|
end</string>
|