Skip to content

Commit

Permalink
Fix saw left-over naming bug.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fozolo authored and sofar committed Dec 29, 2017
1 parent 9eb4926 commit 6f1ee94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circular_saw.lua
Expand Up @@ -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",
Expand Down

0 comments on commit 6f1ee94

Please sign in to comment.