Fix charged bows being placable in itemframes

This commit is contained in:
Wuzzy 2018-05-07 23:22:54 +02:00
parent 62ed722088
commit 39e34b8f4e
1 changed files with 4 additions and 0 deletions

View File

@ -151,6 +151,10 @@ for level=0, 2 do
itemstack:take_item()
return itemstack
end,
-- Prevent accidental interaction with itemframes and other nodes
on_place = function(itemstack)
return itemstack
end,
})
end