summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-06-01 09:18:53 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-06-01 09:18:53 +0200
commit7ff8c00b1b5bb208d63bf3144ef91cb214141963 (patch)
tree091113acd0a9a3e4c356ee8ecf0c729f217b4ea4
parentdd2f4c9c6d9738a01436722f74d2fe961f1a02ae (diff)
Fixed bug with node breakersHEADmaster
This bug fix fixes a crash that happened whenever someone was operating a node breaker with something edible inside the tool slot, and the operator player is absent.
-rw-r--r--hunger.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/hunger.lua b/hunger.lua
index effd25d..aeb4093 100644
--- a/hunger.lua
+++ b/hunger.lua
@@ -76,6 +76,10 @@ function hbhunger.item_eat(hunger_change, replace_with_item, poisen, heal, sound
local name = user:get_player_name()
local h = tonumber(hbhunger.hunger[name])
local hp = user:get_hp()
+ if h == nil or hp == nil then
+ return
+ end
+
minetest.sound_play({name = sound or "hbhunger_eat_generic", gain = 1}, {pos=user:getpos(), max_hear_distance = 16})
-- Saturation