mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-31 07:25:22 +01:00 
			
		
		
		
	Fix item eat sound not played if last item (#9239)
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user