mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-26 12:53:47 +01:00
Anvils: Fix destruction of whole material stack
parent
eb1711c2e7
commit
e42c5641b2
@ -197,8 +197,19 @@ local anvildef = {
|
|||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
if listname == "output" then
|
if listname == "output" then
|
||||||
local inv = meta:get_inventory()
|
local inv = meta:get_inventory()
|
||||||
|
local input1 = inv:get_stack("input", 1)
|
||||||
|
local input2 = inv:get_stack("input", 2)
|
||||||
|
if not input1:is_empty() and not input2:is_empty() then
|
||||||
|
-- Both slots occupied: Repair mode. Only take 1 item from each stack
|
||||||
|
input1:take_item()
|
||||||
|
input2:take_item()
|
||||||
|
inv:set_stack("input", 1, input1)
|
||||||
|
inv:set_stack("input", 2, input2)
|
||||||
|
else
|
||||||
|
-- Otherwise: Rename mode: Clear all input slots as the whole stack is renamed.
|
||||||
inv:set_list("input", {"", ""})
|
inv:set_list("input", {"", ""})
|
||||||
end
|
end
|
||||||
|
end
|
||||||
update_anvil_slots(meta)
|
update_anvil_slots(meta)
|
||||||
end,
|
end,
|
||||||
on_construct = function(pos)
|
on_construct = function(pos)
|
||||||
|
Loading…
Reference in New Issue
Block a user