walkover globalstep timer changed to align with mc time for damage and other actions

This commit is contained in:
Sumyjkl 2022-07-26 23:21:56 +10:00
parent 9cd454f9d7
commit 93e0e0607e
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ end)
local timer = 0
minetest.register_globalstep(function(dtime)
timer = timer + dtime
if timer >= 0.3 then
if timer >= 0.6 then
for _, player in pairs(get_connected_players()) do
local ppos = player:get_pos()
local npos = vector.add(ppos, vector.new(0, -0.1, 0))