]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/common/after.lua
Add clientside translations.
[dragonfireclient.git] / builtin / common / after.lua
index 30a9c7badbe21d652e55699e5454c9aaede629da..cdfaaab8616ba0bccf28b962d13160f3e9fd0790 100644 (file)
@@ -1,18 +1,8 @@
 local jobs = {}
 local time = 0.0
-local last = core.get_us_time() / 1000000
 
 core.register_globalstep(function(dtime)
-       local new = core.get_us_time() / 1000000
-       if new > last then
-               time = time + (new - last)
-       else
-               -- Overflow, we may lose a little bit of time here but
-               -- only 1 tick max, potentially running timers slightly
-               -- too early.
-               time = time + new
-       end
-       last = new
+       time = time + dtime
 
        if #jobs < 1 then
                return