forked from minetest-mods/moreblocks
Finish aliasing split_stone_tile_alt
to checker_stone_tile.
This commit is contained in:
parent
413054fd2f
commit
f6e0db21b2
@ -171,7 +171,7 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "moreblocks:split_stone_tile_alt",
|
output = "moreblocks:checker_stone_tile",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moreblocks:split_stone_tile"},
|
{"moreblocks:split_stone_tile"},
|
||||||
}
|
}
|
||||||
@ -181,7 +181,7 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "default:cobble",
|
output = "default:cobble",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moreblocks:split_stone_tile_alt"},
|
{"moreblocks:checker_stone_tile"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -107,3 +107,23 @@ if minetest.get_modpath("wool") then
|
|||||||
stairsplus:register_all(mod, name, nodename, ndef)
|
stairsplus:register_all(mod, name, nodename, ndef)
|
||||||
end
|
end
|
||||||
end
|
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")
|
||||||
|
|
||||||
|
-- The following LBM is necessary because the name stair_split_stone_tile_alt
|
||||||
|
-- conflicts with another node and so the alias for that specific node gets
|
||||||
|
-- ignored.
|
||||||
|
minetest.register_lbm({
|
||||||
|
name = "moreblocks:fix_split_stone_tile_alt_name_collision",
|
||||||
|
nodenames = {"moreblocks:stair_split_stone_tile_alt"},
|
||||||
|
action = function(pos, node)
|
||||||
|
minetest.set_node(pos, {
|
||||||
|
name = "moreblocks:stair_checker_stone_tile",
|
||||||
|
param2 = minetest.get_node(pos).param2
|
||||||
|
|
||||||
|
})
|
||||||
|
minetest.log('action', "LBM replaced " .. node.name ..
|
||||||
|
" at " .. minetest.pos_to_string(pos))
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user