From 948da34755d89edbcaf5567935364c46b84845e8 Mon Sep 17 00:00:00 2001 From: the-real-herowl Date: Sun, 18 Aug 2024 08:45:49 +0200 Subject: [PATCH] Readded missing stairs and slabs (#4601) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also *probably* fixed their blast res and hardness Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4601 Reviewed-by: Mikita Wiśniewski Co-authored-by: the-real-herowl Co-committed-by: the-real-herowl --- mods/ITEMS/mcl_stairs/register.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/mods/ITEMS/mcl_stairs/register.lua b/mods/ITEMS/mcl_stairs/register.lua index 920d8387d..7c0935a3c 100644 --- a/mods/ITEMS/mcl_stairs/register.lua +++ b/mods/ITEMS/mcl_stairs/register.lua @@ -115,6 +115,30 @@ mcl_stairs.register_slab("diorite", "mcl_core:diorite", mcl_sounds.node_sound_stone_defaults(), 6, 2, S("Double Diorite Slab")) +mcl_stairs.register_stair_and_slab("cobble", "mcl_core:cobble", + {pickaxey=1, material_stone=1}, + {"default_cobble.png"}, + S("Cobblestone Stairs"), + S("Cobblestone Slab"), + mcl_sounds.node_sound_stone_defaults(), nil, nil, + S("Double Cobblestone Slab")) + +mcl_stairs.register_stair_and_slab("mossycobble", "mcl_core:mossycobble", + {pickaxey=1, material_stone=1}, + {"default_mossycobble.png"}, + S("Mossy Cobblestone Stairs"), + S("Mossy Cobblestone Slab"), + mcl_sounds.node_sound_stone_defaults(), nil, nil, + S("Double Mossy Cobblestone Slab")) + +mcl_stairs.register_stair_and_slab("brick_block", "mcl_core:brick_block", + {pickaxey=1, material_stone=1}, + {"default_brick.png"}, + S("Brick Stairs"), + S("Brick Slab"), + mcl_sounds.node_sound_stone_defaults(), nil, nil, + S("Double Brick Slab")) + mcl_stairs.register_stair_and_slab("sandstone", "mcl_core:sandstone", {pickaxey=1, material_stone=1}, {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_normal.png"},