1
0
mirror of https://github.com/HybridDog/builtin_item.git synced 2024-11-13 05:50:34 +01:00

Merge pull request #1 from Zeg9/master

Update to the "take items only if inventory is not full" behavior
This commit is contained in:
PilzAdam 2013-05-03 15:37:04 -07:00
commit 7c7d3e2292

View File

@ -171,7 +171,11 @@ minetest.register_entity(":__builtin:item", {
on_punch = function(self, hitter)
if self.itemstring ~= '' then
hitter:get_inventory():add_item("main", self.itemstring)
local left = hitter:get_inventory():add_item("main", self.itemstring)
if not left:is_empty() then
self.itemstring = left:to_string()
return
end
end
self.object:remove()
end,