nodecore-cd2025/mods/nc_api/util_gametime.lua

23 lines
669 B
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
local math, minetest, nodecore
= math, minetest, nodecore
local math_abs
= math.abs
-- LUALOCALS > ---------------------------------------------------------
nodecore.register_globalstep("gametime", function(dtime)
local mtt = minetest.get_gametime()
local nct = nodecore.gametime
if not nct then
nodecore.log("info", "nodecore.gametime: init to " .. mtt)
nct = mtt
end
nct = nct + dtime
if math_abs(nct - mtt) >= 2 then
2020-06-09 19:05:39 -04:00
nodecore.log("warning", "nodecore.gametime: excess drift; nct="
.. nct .. ", mtt=" .. mtt)
nct = mtt
end
nodecore.gametime = nct
end)