Fix crash when golem tries to pickup item

This commit is contained in:
cora 2022-10-19 22:38:05 +02:00
parent ec4d431835
commit 9245c85296
1 changed files with 4 additions and 3 deletions

View File

@ -48,13 +48,14 @@ mcl_mobs:register_mob("mobs_mc:iron_golem", {
_got_poppy = false,
pick_up = {"mcl_flowers:poppy"},
on_pick_up = function(self,n)
if n.itemstring:find("mcl_flowers:poppy") then
local it = ItemStack(n.itemstring)
if it:get_name() == "mcl_flowers:poppy" then
if not self._got_poppy then
self._got_poppy=true
return
it:take_item(1)
end
return true
end
return it
end,
replace_what = {"mcl_flowers:poppy"},
replace_with = {"air"},