diff options
author | Auke Kok <sofar@foo-projects.org> | 2016-12-15 14:56:45 -0800 |
---|---|---|
committer | Auke Kok <sofar+github@foo-projects.org> | 2016-12-31 12:33:09 -0800 |
commit | 5500c9906c1c95e6d00acb06e0d29e21d36ff77f (patch) | |
tree | a0cb511cbb2f05076b3cb6855bdff1fd31e121d8 /stairsplus/microblocks.lua | |
parent | d587b4d23f9d386b1a3b924d0a3860b05941eee8 (diff) |
Run cleanfile on all files, fixing whitespace issues.
Diffstat (limited to 'stairsplus/microblocks.lua')
-rw-r--r-- | stairsplus/microblocks.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/stairsplus/microblocks.lua b/stairsplus/microblocks.lua index a457d10..6271e27 100644 --- a/stairsplus/microblocks.lua +++ b/stairsplus/microblocks.lua @@ -98,53 +98,53 @@ function stairsplus:register_micro(modname, subname, recipeitem, fields) minetest.register_node(":" ..modname.. ":micro_" ..subname..alternate, def) end minetest.register_alias(modname.. ":micro_" ..subname.. "_bottom", modname.. ":micro_" ..subname) - + circular_saw.known_nodes[recipeitem] = {modname, subname} -- Some saw-less recipes: - + minetest.register_craft({ type = "shapeless", output = modname .. ":micro_" .. subname .. " 7", recipe = {modname .. ":stair_" .. subname .. "_inner"}, }) - + minetest.register_craft({ output = modname .. ":micro_" .. subname .. " 6", type = "shapeless", recipe = {modname .. ":stair_" .. subname}, }) - + minetest.register_craft({ type = "shapeless", output = modname .. ":micro_" .. subname .. " 5", recipe = {modname .. ":stair_" .. subname .. "_outer"}, }) - + minetest.register_craft({ type = "shapeless", output = modname .. ":micro_" .. subname .. " 4", recipe = {modname .. ":slab_" .. subname}, }) - + minetest.register_craft({ type = "shapeless", output = modname .. ":micro_" .. subname .. " 4", recipe = {modname .. ":stair_" .. subname .. "_alt"}, }) - + minetest.register_craft({ type = "shapeless", output = modname .. ":micro_" .. subname .. " 3", recipe = {modname .. ":stair_" .. subname .. "_right_half"}, }) - + minetest.register_craft({ type = "shapeless", output = modname .. ":micro_" .. subname .. " 2", recipe = {modname .. ":panel_" .. subname}, }) - + minetest.register_craft({ type = "shapeless", output = recipeitem, |