small fixes

master
Toby plowy 2017-05-08 01:56:08 +02:00
parent be98a54541
commit 5a6235a177
2 changed files with 26 additions and 1 deletions

View File

@ -722,4 +722,29 @@ minetest.register_node("decoblocks:stucco", {
tiles = {"decoblocks_stucco.png"},
groups = {cracky = 3, stone = 2},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("decoblocks:altar", {
description = "Altar",
drawtype = "mesh",
mesh = "old_skeleton.obj",
tiles = {
"old_skeleton.png",
},
visual_scale = 0.5,
wield_image = "decoblocks_skull_item.png",
wield_scale = {x=1.0, y=1.0, z=1.0},
paramtype = "light",
paramtype2 = "facedir",
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.0, 0.3}
},
collision_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.0, 0.3}
},
inventory_image = "decoblocks_skull_item.png",
groups = {choppy = 1, oddly_breakable_by_hand = 1},
sounds = default.node_sound_wood_defaults()
})

View File

@ -505,7 +505,7 @@ minetest.register_node("default:wood", {
})
minetest.register_node("default:sapling", {
description = "Sapling",
description = "Oak Sapling",
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sapling.png"},