yl_canned_food/globalsteps.lua
2024-06-12 19:45:24 +02:00

14 lines
214 B
Lua

local timer = 0
local gs = function(dtime)
timer = timer + dtime
if timer <= yl_canned_food.config.interval then
return
end
timer = 0
-- do stuff
end
minetest.register_globalstep(gs)