diff options
author | Wuzzy <almikes@aol.com> | 2016-08-05 15:36:31 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-08-05 15:36:31 +0200 |
commit | abbf00314547b5d523855798b92e7c22ac6ad5ed (patch) | |
tree | cde50b8696b4057ef47da2214a00023a6ffa6884 | |
parent | 30b0b41e3e6bea1bf54b400d45bc01251d964a8e (diff) |
Fix crash when poisoned player leaves server
-rw-r--r-- | hunger.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) |