From d2844ee252e25c45c0d1936d9e652a13d87e0059 Mon Sep 17 00:00:00 2001 From: kilbith Date: Tue, 1 Sep 2015 14:21:43 +0200 Subject: [PATCH] Use less nodeboxes on stone path --- crafts.lua | 17 ----------------- nodes.lua | 14 +++++--------- 2 files changed, 5 insertions(+), 26 deletions(-) diff --git a/crafts.lua b/crafts.lua index fe1811d..cc17627 100644 --- a/crafts.lua +++ b/crafts.lua @@ -148,14 +148,6 @@ minetest.register_craft({ } }) -minetest.register_craft({ - output = "xdecor:fence_wrought_iron 2", - recipe = { - {"default:iron_lump", "default:iron_lump", "default:iron_lump"}, - {"default:iron_lump", "default:iron_lump", "default:iron_lump"} - } -}) - minetest.register_craft({ output = "xdecor:flint_steel", recipe = { @@ -248,15 +240,6 @@ minetest.register_craft({ {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"} } }) - -minetest.register_craft({ - output = "xdecor:metal_cabinet", - recipe = { - {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, - {"default:paper", "default:paper", "default:paper"}, - {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"} - } -}) minetest.register_craft({ output = "xdecor:moonbrick", diff --git a/nodes.lua b/nodes.lua index cd279d4..bc38231 100644 --- a/nodes.lua +++ b/nodes.lua @@ -484,19 +484,15 @@ xdecor.register("stereo", { xdecor.register("stonepath", { description = "Garden Stone Path", tiles = {"default_stone.png"}, - groups = {snappy=3, stone=1}, + groups = {snappy=3}, sounds = default.node_sound_stone_defaults(), sunlight_propagates = true, node_box = { type = "fixed", - fixed = {{-0.4375, -0.5, 0.3125, -0.3125, -0.48, 0.4375}, - {-0.25, -0.5, 0.125, 0, -0.48, 0.375}, - {0.125, -0.5, 0.125, 0.4375, -0.48, 0.4375}, - {-0.4375, -0.5, -0.125, -0.25, -0.48, 0.0625}, - {-0.0625, -0.5, -0.25, 0.25, -0.48, 0.0625}, - {0.3125, -0.5, -0.25, 0.4375, -0.48, -0.125}, - {-0.3125, -0.5, -0.375, -0.125, -0.48, -0.1875}, - {0.125, -0.5, -0.4375, 0.25, -0.48, -0.3125}} + fixed = {{0, -0.5, 0, 0.375, -0.47, 0.375}, + {-0.4375, -0.5, -0.4375, -0.0625, -0.47, -0.0625}, + {-0.4375, -0.5, 0.125, -0.125, -0.47, 0.4375}, + {0.125, -0.5, -0.375, 0.375, -0.47, -0.125}} }, selection_box = xdecor.nodebox.slab_y(0.05) })