Check if hitter has inventory when punching item

Fixes #3280
This commit is contained in:
BlockMen 2015-10-25 18:15:31 +01:00
parent df2c474d19
commit eb92bfb030
1 changed files with 4 additions and 3 deletions

View File

@ -200,9 +200,10 @@ core.register_entity(":__builtin:item", {
end,
on_punch = function(self, hitter)
if self.itemstring ~= '' then
local left = hitter:get_inventory():add_item("main", self.itemstring)
if not left:is_empty() then
local inv = hitter:get_inventory()
if inv and self.itemstring ~= '' then
local left = inv:add_item("main", self.itemstring)
if left and not left:is_empty() then
self.itemstring = left:to_string()
return
end