mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-01-11 18:30:22 +01:00
basic_materials stairs/slopes/et. al
(keeping original technic item names)
This commit is contained in:
parent
723db44933
commit
01ec8290f6
@ -3,3 +3,4 @@ intllib?
|
||||
stairs?
|
||||
farming?
|
||||
wool?
|
||||
basic_materials?
|
||||
|
@ -112,6 +112,21 @@ if minetest.get_modpath("wool") then
|
||||
end
|
||||
end
|
||||
|
||||
-- basic_materials, keeping the original technic-oriented names
|
||||
-- for backwards compatibility
|
||||
|
||||
if minetest.get_modpath("basic_materials") then
|
||||
stairsplus:register_all("technic","concrete","basic_materials:concrete_block",{
|
||||
description = "Concrete",
|
||||
tiles = {"basic_materials_concrete_block.png",},
|
||||
groups = {cracky=1, level=2, concrete=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_alias("prefab:concrete_stair","technic:stair_concrete")
|
||||
minetest.register_alias("prefab:concrete_slab","technic:slab_concrete")
|
||||
end
|
||||
|
||||
-- Alias cuts of split_stone_tile_alt which was renamed checker_stone_tile.
|
||||
stairsplus:register_alias_all("moreblocks", "split_stone_tile_alt", "moreblocks", "checker_stone_tile")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user