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/panels.lua | |
parent | d587b4d23f9d386b1a3b924d0a3860b05941eee8 (diff) |
Run cleanfile on all files, fixing whitespace issues.
Diffstat (limited to 'stairsplus/panels.lua')
-rw-r--r-- | stairsplus/panels.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stairsplus/panels.lua b/stairsplus/panels.lua index 314939b..df4e2bf 100644 --- a/stairsplus/panels.lua +++ b/stairsplus/panels.lua @@ -98,7 +98,7 @@ function stairsplus:register_panel(modname, subname, recipeitem, fields) minetest.register_node(":" ..modname.. ":panel_" ..subname..alternate, def) end minetest.register_alias(modname.. ":panel_" ..subname.. "_bottom", modname.. ":panel_" ..subname) - + circular_saw.known_nodes[recipeitem] = {modname, subname} -- Some saw-less recipes: @@ -110,7 +110,7 @@ function stairsplus:register_panel(modname, subname, recipeitem, fields) {recipeitem, recipeitem}, }, }) - + minetest.register_craft({ output = modname .. ":panel_" .. subname .. " 12", recipe = { @@ -118,13 +118,13 @@ function stairsplus:register_panel(modname, subname, recipeitem, fields) {recipeitem, recipeitem}, }, }) - + minetest.register_craft({ type = "shapeless", output = modname .. ":panel_" .. subname, recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname}, }) - + minetest.register_craft({ type = "shapeless", output = recipeitem, |