Fix another large chest item duplication bug

This commit is contained in:
Wuzzy 2017-06-12 21:04:35 +02:00
parent 515a47e463
commit 6eaa6cde54
1 changed files with 8 additions and 6 deletions

View File

@ -304,12 +304,14 @@ minetest.register_node("mcl_chests:"..basename.."_right", {
minetest.log("action", player:get_player_name()..
" moves stuff to chest at "..minetest.pos_to_string(pos))
-- BEGIN OF LISTRING WORKAROUND
local other_pos = get_chest_neighborpos(pos, minetest.get_node(pos).param2, "right")
local other_inv = minetest.get_inventory({type="node", pos=other_pos})
local leftover = other_inv:add_item("main", stack)
if not leftover:is_empty() then
local inv = minetest.get_inventory({type="node", pos=pos})
inv:add_item("main", leftover)
if listname == "input" then
local other_pos = get_chest_neighborpos(pos, minetest.get_node(pos).param2, "right")
local other_inv = minetest.get_inventory({type="node", pos=other_pos})
local leftover = other_inv:add_item("main", stack)
if not leftover:is_empty() then
local inv = minetest.get_inventory({type="node", pos=pos})
inv:add_item("main", leftover)
end
end
-- END OF LISTRING WORKAROUND
end,