Skip to content

Commit

Permalink
increase time between drowning checks
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed Jan 3, 2021
1 parent 6d80199 commit c52500c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drowning.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ end
local timer = 0
minetest.register_globalstep(function(dtime)
timer = timer + dtime;
if timer >= 1 then
if timer >= 2 then
local t0 = minetest.get_us_time()

for _,player in ipairs(minetest.get_connected_players()) do
Expand Down

0 comments on commit c52500c

Please sign in to comment.