mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
Fix timer initialization.
This fixes the problem that the first timer tick is an overrun and causes all timers to expire immediately. replaces #4003
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
|
||||
local jobs = {}
|
||||
local time = 0.0
|
||||
local last = 0.0
|
||||
local last = core.get_us_time() / 1000000
|
||||
|
||||
core.register_globalstep(function(dtime)
|
||||
local new = core.get_us_time() / 1000000
|
||||
|
Reference in New Issue
Block a user