1
0
mirror of https://github.com/minetest-mods/global_exchange.git synced 2025-04-04 19:20:24 +02:00

Fix bug causing update every tick

This commit is contained in:
raymoo 2016-02-25 22:36:45 -08:00
parent b33e8e3817
commit 41875ae574

@ -43,6 +43,7 @@ minetest.register_globalstep(function(dtime)
elapsed = elapsed + dtime elapsed = elapsed + dtime
if elapsed >= summary_interval then if elapsed >= summary_interval then
summary_fs = mk_summary_fs() summary_fs = mk_summary_fs()
elapsed = 0
end end
end) end)