added missing stairs and slabs

master
Juraj Vajda 2018-11-08 23:41:01 -05:00
parent 469bc7ccfd
commit b274b28876
1 changed files with 23 additions and 1 deletions

View File

@ -6,4 +6,26 @@ stairs.register_stair_and_slab(
"Magma Cobblestone Stair",
"Magma Cobblestone Slab",
default.node_sound_stone_defaults()
)
)
stairs.register_stair_and_slab(
"snowcobble",
"x_default:snowcobble",
{choppy=1, wood=1, flammable=2},
{"x_default_snowcobble.png"},
"Snow Cobble Stair",
"Snow Cobble Slab",
default.node_sound_stone_defaults(),
false
)
stairs.register_stair_and_slab(
"icecobble",
"x_default:icecobble",
{choppy=1, wood=1, flammable=2},
{"x_default_icecobble.png"},
"Ice Cobble Stair",
"Ice Cobble Slab",
default.node_sound_stone_defaults(),
false
)