forked from minetest-mods/moreblocks
Fix saw left-over naming bug.
The appended '_bottom' is left over from an older naming convention and relies on an alias to avoid unknown nodes showing up in the saw's left-over bin.
This commit is contained in:
parent
9eb4926d8d
commit
6f1ee946a0
|
@ -181,7 +181,7 @@ function circular_saw:update_inventory(pos, amount)
|
|||
|
||||
-- 0-7 microblocks may remain left-over:
|
||||
inv:set_list("micro", {
|
||||
modname .. ":micro_" .. material .. "_bottom " .. (amount % 8)
|
||||
modname .. ":micro_" .. material .. " " .. (amount % 8)
|
||||
})
|
||||
-- Display:
|
||||
inv:set_list("output",
|
||||
|
|
Loading…
Reference in New Issue
Block a user