Skip to content

Commit

Permalink
Fix item eat sound not played if last item (#9239)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuzzy2 authored and SmallJoker committed Dec 24, 2019
1 parent 7199dc7 commit 876a15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/game/item.lua
Expand Up @@ -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
Expand Down

0 comments on commit 876a15b

Please sign in to comment.