9 Commits

2 changed files with 10 additions and 1 deletions

View File

@ -177,8 +177,15 @@ if minetest.global_exists("stairsplus") then
groups = {cracky=3, oddly_breakable_by_hand=1}, groups = {cracky=3, oddly_breakable_by_hand=1},
sounds = default.node_sound_glass_defaults() sounds = default.node_sound_glass_defaults()
}) })
end end
-- NALC aliases
minetest.register_alias("stairs:stair_quartzblock", "quartz:stair_block")
minetest.register_alias("stairs:slab_quartzblock", "quartz:slab_block")
minetest.register_alias("stairs:stair_quartzstair", "quartz:stair_pillar")
minetest.register_alias("stairs:slab_quartzstair", "quartz:slab_pillar")
-- --
-- Deprecated -- Deprecated
-- --
@ -198,3 +205,5 @@ if settings:get_bool("ENABLE_HORIZONTAL_PILLAR") then
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
}) })
end end
minetest.log("action", "[quartz] loaded.")

View File

@ -1,6 +1,6 @@
# Set this to true to allow usage of the stairsplus mod in moreblocks # Set this to true to allow usage of the stairsplus mod in moreblocks
ENABLE_STAIRSPLUS = false ENABLE_STAIRSPLUS = true
# This enables the old horizontal pillar block(deprecated, be sure to convert them back to normal pillars) # This enables the old horizontal pillar block(deprecated, be sure to convert them back to normal pillars)