create proper stairs mod replacement; create option to allow registering stairs w/out a proper recipeitem

This commit is contained in:
flux
2022-12-09 14:55:37 -08:00
parent d844a5f8b7
commit 53ac0b80b3
16 changed files with 484 additions and 155 deletions

View File

@ -1,12 +1,9 @@
if stairsplus_legacy.has.stairs then
stairsplus.compat.override_stairs("straw", "farming:straw")
end
local farming_nodes = {"straw"}
for _, name in pairs(farming_nodes) do
local node = ("farming:%s"):format(name)
if minetest.registered_nodes[node] then
stairsplus_legacy.register_legacy(node)
stairsplus.api.register_alias_all(("moreblocks:%s"):format(name), node)
stairsplus.api.register_alias_all(("stairs:%s"):format(name), node)
end
end