Use less nodeboxes on stone path

This commit is contained in:
kilbith 2015-09-01 14:21:43 +02:00
parent 4c0441527f
commit d2844ee252
2 changed files with 5 additions and 26 deletions

View File

@ -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({ minetest.register_craft({
output = "xdecor:flint_steel", output = "xdecor:flint_steel",
recipe = { recipe = {
@ -249,15 +241,6 @@ minetest.register_craft({
} }
}) })
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({ minetest.register_craft({
output = "xdecor:moonbrick", output = "xdecor:moonbrick",
recipe = { recipe = {

View File

@ -484,19 +484,15 @@ xdecor.register("stereo", {
xdecor.register("stonepath", { xdecor.register("stonepath", {
description = "Garden Stone Path", description = "Garden Stone Path",
tiles = {"default_stone.png"}, tiles = {"default_stone.png"},
groups = {snappy=3, stone=1}, groups = {snappy=3},
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
sunlight_propagates = true, sunlight_propagates = true,
node_box = { node_box = {
type = "fixed", type = "fixed",
fixed = {{-0.4375, -0.5, 0.3125, -0.3125, -0.48, 0.4375}, fixed = {{0, -0.5, 0, 0.375, -0.47, 0.375},
{-0.25, -0.5, 0.125, 0, -0.48, 0.375}, {-0.4375, -0.5, -0.4375, -0.0625, -0.47, -0.0625},
{0.125, -0.5, 0.125, 0.4375, -0.48, 0.4375}, {-0.4375, -0.5, 0.125, -0.125, -0.47, 0.4375},
{-0.4375, -0.5, -0.125, -0.25, -0.48, 0.0625}, {0.125, -0.5, -0.375, 0.375, -0.47, -0.125}}
{-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}}
}, },
selection_box = xdecor.nodebox.slab_y(0.05) selection_box = xdecor.nodebox.slab_y(0.05)
}) })