From 745bb6d21f5949a73b4b48c186ac4693ef86d6b6 Mon Sep 17 00:00:00 2001 From: BuckarooBanzay Date: Sun, 12 Jul 2020 17:12:35 +0200 Subject: [PATCH] fix some indent issues --- octagon_panes.lua | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/octagon_panes.lua b/octagon_panes.lua index ea4f354..3f72530 100644 --- a/octagon_panes.lua +++ b/octagon_panes.lua @@ -83,25 +83,25 @@ local function register(basename, description, texture) -- register recipes minetest.register_craft({ - output = nodename_single .. " 16", - recipe = { - {recipe_ingredient} - }, - }) - - minetest.register_craft({ - output = nodename_double .. " 16", - recipe = { - {recipe_ingredient}, + output = nodename_single .. " 16", + recipe = { {recipe_ingredient} - }, - }) + }, + }) minetest.register_craft({ - output = nodename_offset, + output = nodename_double .. " 16", + recipe = { + {recipe_ingredient}, + {recipe_ingredient} + }, + }) + + minetest.register_craft({ + output = nodename_offset, type = "shapeless", - recipe = {nodename_single}, - }) + recipe = {nodename_single}, + }) end register("octrng", "Orange Octagon Glass pane", "scifi_nodes_octrng.png")