forked from mtcontrib/minetest_hbhunger
Fix crash when poisoned player leaves server
This commit is contained in:
parent
30b0b41e3e
commit
abbf003145
|
@ -50,6 +50,10 @@ end
|
|||
|
||||
-- Poison player
|
||||
local function poisenp(tick, time, time_left, player)
|
||||
-- First check if player is still there
|
||||
if not player:is_player() then
|
||||
return
|
||||
end
|
||||
time_left = time_left + tick
|
||||
if time_left < time then
|
||||
minetest.after(tick, poisenp, tick, time, time_left, player)
|
||||
|
|
Loading…
Reference in New Issue
Block a user