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,6 +304,7 @@ 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
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)
@ -311,6 +312,7 @@ minetest.register_node("mcl_chests:"..basename.."_right", {
local inv = minetest.get_inventory({type="node", pos=pos})
inv:add_item("main", leftover)
end
end
-- END OF LISTRING WORKAROUND
end,
on_metadata_inventory_take = function(pos, listname, index, stack, player)