Merge pull request #87 from C-C-Minetest-Server/fork-20240318-basic-idle-nil

Fix idle receiving nil value
This commit is contained in:
ElCeejo 2024-08-15 00:14:03 -07:00 committed by GitHub
commit 259e741282
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -756,7 +756,7 @@ creatura.register_utility("animalia:basic_idle", function(self, timeout, anim)
local init = false local init = false
local function func(mob) local function func(mob)
if not init then if not init then
creatura.action_idle(mob, timeout, anim) creatura.action_idle(mob, timer, anim)
end end
timer = timer - mob.dtime timer = timer - mob.dtime
if timer <= 0 then if timer <= 0 then