aboutsummaryrefslogtreecommitdiff
path: root/stairsplus/microblocks.lua
diff options
context:
space:
mode:
authorAuke Kok <sofar@foo-projects.org>2016-12-15 14:56:45 -0800
committerAuke Kok <sofar+github@foo-projects.org>2016-12-31 12:33:09 -0800
commit5500c9906c1c95e6d00acb06e0d29e21d36ff77f (patch)
treea0cb511cbb2f05076b3cb6855bdff1fd31e121d8 /stairsplus/microblocks.lua
parentd587b4d23f9d386b1a3b924d0a3860b05941eee8 (diff)
downloadmoreblocks-5500c9906c1c95e6d00acb06e0d29e21d36ff77f.tar.gz
moreblocks-5500c9906c1c95e6d00acb06e0d29e21d36ff77f.tar.bz2
moreblocks-5500c9906c1c95e6d00acb06e0d29e21d36ff77f.zip
Run cleanfile on all files, fixing whitespace issues.
Diffstat (limited to 'stairsplus/microblocks.lua')
-rw-r--r--stairsplus/microblocks.lua18
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,