Fix bug causing update every tick

This commit is contained in:
raymoo 2016-02-25 22:36:45 -08:00
parent b33e8e3817
commit 41875ae574
1 changed files with 1 additions and 0 deletions

View File

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