mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-23 08:20:21 +01:00
register adobe and roofing of building_blocks with the circular saw as well
This commit is contained in:
parent
b88e756627
commit
3aee04287e
@ -328,6 +328,28 @@ if minetest.get_modpath("moreblocks") then
|
|||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
stairsplus:register_all(
|
||||||
|
"building_blocks",
|
||||||
|
"Adobe",
|
||||||
|
"building_blocks:Adobe",
|
||||||
|
{
|
||||||
|
description = "Adobe",
|
||||||
|
tiles = {"building_blocks_Adobe.png"},
|
||||||
|
groups = {crumbly=3},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
stairsplus:register_all(
|
||||||
|
"building_blocks",
|
||||||
|
"Roofing",
|
||||||
|
"building_blocks:Roofing",
|
||||||
|
{
|
||||||
|
description = "Roofing",
|
||||||
|
tiles = {"building_blocks_Roofing.png"},
|
||||||
|
groups = {snappy=3},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
}
|
||||||
|
)
|
||||||
else
|
else
|
||||||
bb_stairs = {}
|
bb_stairs = {}
|
||||||
|
|
||||||
@ -432,6 +454,18 @@ else
|
|||||||
"Grate Stair",
|
"Grate Stair",
|
||||||
"Grate Slab"
|
"Grate Slab"
|
||||||
)
|
)
|
||||||
|
bb_stairs.register_stair_and_slab("Adobe", "building_blocks:Adobe",
|
||||||
|
{crumbly=3},
|
||||||
|
{"building_blocks_Adobe.png"},
|
||||||
|
"Adobe stair",
|
||||||
|
"Adobe slab"
|
||||||
|
)
|
||||||
|
bb_stairs.register_stair_and_slab("Roofing", "building_blocks:Roofing",
|
||||||
|
{snappy=3},
|
||||||
|
{"building_blocks_Roofing.png"},
|
||||||
|
"Roofing stair",
|
||||||
|
"Roofing slab"
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user