generated from your-land/yl_template
12 lines
200 B
Lua
12 lines
200 B
Lua
local timer = 0
|
|
|
|
local gs = function(dtime)
|
|
timer = timer + dtime
|
|
if timer <= yl_scheduler.config.interval then return end
|
|
timer = 0
|
|
|
|
-- do stuff
|
|
end
|
|
|
|
minetest.register_globalstep(gs)
|