From: Wuzzy Date: Tue, 24 Dec 2019 18:12:46 +0000 (+0000) Subject: Fix item eat sound not played if last item (#9239) X-Git-Tag: 5.2.0~242 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=876a15bd7570f4cccf815a1d5e5588525e445cb1;p=oweals%2Fminetest.git Fix item eat sound not played if last item (#9239) --- diff --git a/builtin/game/item.lua b/builtin/game/item.lua index ef47cd66d..d6c6469b3 100644 --- a/builtin/game/item.lua +++ b/builtin/game/item.lua @@ -462,10 +462,10 @@ function core.do_item_eat(hp_change, replace_with_item, itemstack, user, pointed return result end end + local def = itemstack:get_definition() if itemstack:take_item() ~= nil then user:set_hp(user:get_hp() + hp_change) - local def = itemstack:get_definition() if def and def.sound and def.sound.eat then minetest.sound_play(def.sound.eat, { pos = user:get_pos(), max_hear_distance = 16 }) end