mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-14 22:40:19 +01:00
34 lines
1.0 KiB
Lua
34 lines
1.0 KiB
Lua
-- legacy: export old API for mods which depend on it
|
|
-- provide a configuration option to *disable* legacy. it must be enabled by default, to prevent breaking
|
|
-- existing servers
|
|
local api = stairsplus.api
|
|
|
|
local legacy_mode = stairsplus.settings.legacy_mode
|
|
|
|
function stairsplus:register_all(modname, subname, recipeitem, fields)
|
|
if legacy_mode then
|
|
api.register_group(recipeitem, "legacy", fields)
|
|
else
|
|
api.register_group(recipeitem, "common", fields)
|
|
end
|
|
|
|
local old_name = ("%s:%s"):format(modname, subname)
|
|
if old_name ~= recipeitem then
|
|
api.register_alias_all(old_name, recipeitem)
|
|
end
|
|
end
|
|
|
|
function stairsplus:register_alias_all(modname_old, subname_old, modname_new, subname_new)
|
|
api.register_alias_all(
|
|
("%s:%s"):format(modname_old, subname_old),
|
|
("%s:%s"):format(modname_new, subname_new)
|
|
)
|
|
end
|
|
|
|
function stairsplus:register_alias_force_all(modname_old, subname_old, modname_new, subname_new)
|
|
api.register_alias_force_all(
|
|
("%s:%s"):format(modname_old, subname_old),
|
|
("%s:%s"):format(modname_new, subname_new)
|
|
)
|
|
end
|