From 5560ec8178053b27adac6f277f539975d46267b8 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 10 Dec 2018 09:25:47 +0100 Subject: [PATCH] Add eat sound (#7956) --- builtin/game/item.lua | 5 +++++ doc/lua_api.txt | 1 + 2 files changed, 6 insertions(+) diff --git a/builtin/game/item.lua b/builtin/game/item.lua index 9b7569c77..ced28771e 100644 --- a/builtin/game/item.lua +++ b/builtin/game/item.lua @@ -469,6 +469,11 @@ function core.do_item_eat(hp_change, replace_with_item, itemstack, user, pointed 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 + if replace_with_item then if itemstack:is_empty() then itemstack:add_item(replace_with_item) diff --git a/doc/lua_api.txt b/doc/lua_api.txt index d48e50fde..523bf8eb1 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -5795,6 +5795,7 @@ Used by `minetest.register_node`, `minetest.register_craftitem`, and sound = { breaks = "default_tool_break", -- tools only place = , + eat = , }, on_place = func(itemstack, placer, pointed_thing),