mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-03-30 19:02:41 +02:00
Fix player eating item when pointing a mob
This commit is contained in:
@ -18,6 +18,10 @@ minetest.do_item_eat = function(hp_change, replace_with_item, itemstack, user, p
|
||||
end
|
||||
end
|
||||
end
|
||||
-- Also don't eat when pointing object (it could be an animal)
|
||||
if pointed_thing.type == "object" then
|
||||
return itemstack
|
||||
end
|
||||
|
||||
local old_itemstack = itemstack
|
||||
|
||||
|
Reference in New Issue
Block a user