mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Only reset output if input is empty
This commit is contained in:
parent
7fcc2e3be3
commit
0e60231c2e
1 changed files with 5 additions and 1 deletions
|
@ -289,8 +289,12 @@ minetest.register_node("mcl_stonecutter:stonecutter", {
|
|||
local input = inv:get_stack("input", 1)
|
||||
input:take_item()
|
||||
inv:set_stack("input", 1, input)
|
||||
end
|
||||
if input:get_count() == 0 then
|
||||
meta:set_string("cut_stone", nil)
|
||||
end
|
||||
else
|
||||
meta:set_string("cut_stone", nil)
|
||||
end
|
||||
update_stonecutter_slots(meta)
|
||||
end,
|
||||
on_construct = function(pos)
|
||||
|
|
Loading…
Reference in a new issue