forked from minetest-mods/moreblocks
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?
|
stairs?
|
||||||
farming?
|
farming?
|
||||||
wool?
|
wool?
|
||||||
|
basic_materials?
|
||||||
|
@ -112,6 +112,21 @@ if minetest.get_modpath("wool") then
|
|||||||
end
|
end
|
||||||
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.
|
-- 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")
|
stairsplus:register_alias_all("moreblocks", "split_stone_tile_alt", "moreblocks", "checker_stone_tile")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user