forked from mtcontrib/homedecor_modpack
fix facedir on fireplace
This commit is contained in:
parent
403e0fa5b5
commit
461533a1e7
@ -136,16 +136,23 @@ minetest.register_node("building_blocks:grate", {
|
|||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {cracky=1},
|
groups = {cracky=1},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("building_blocks:Fireplace", {
|
minetest.register_node("building_blocks:Fireplace", {
|
||||||
drawtype = "stonelike",
|
description = "Fireplace",
|
||||||
description = "fireplace",
|
tiles = {
|
||||||
tiles = {"building_blocks_cast_iron.png","building_blocks_cast_iron.png","building_blocks_cast_iron.png","building_blocks_cast_iron_fireplace.png"},
|
"building_blocks_cast_iron.png",
|
||||||
paramtype = "facedir_simple",
|
"building_blocks_cast_iron.png",
|
||||||
|
"building_blocks_cast_iron.png",
|
||||||
|
"building_blocks_cast_iron_fireplace.png"
|
||||||
|
},
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
light_source = LIGHT_MAX,
|
light_source = LIGHT_MAX,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {cracky=2},
|
groups = {cracky=2},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("building_blocks:woodglass", {
|
minetest.register_node("building_blocks:woodglass", {
|
||||||
drawtype = "glasslike",
|
drawtype = "glasslike",
|
||||||
description = "Wood Framed Glass",
|
description = "Wood Framed Glass",
|
||||||
|
Loading…
Reference in New Issue
Block a user