Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst

This commit is contained in:
N-Nachtigal 2025-05-14 16:36:42 +02:00
parent 95945c0306
commit a0c893ca0b
1124 changed files with 64294 additions and 763 deletions

View file

@ -0,0 +1,27 @@
stairsplus_legacy = fmod.create()
stairsplus_legacy.dofile("resources")
function stairsplus_legacy.register_legacy(node, overrides, meta)
if stairsplus.settings.legacy_mode then
stairsplus.api.register_group(node, "legacy", overrides, meta)
else
stairsplus.api.register_group(node, "common", overrides, meta)
end
end
local mods = {
"basic_materials",
"default",
"farming",
"gloopblocks",
"technic",
"prefab",
"wool",
}
for _, mod in ipairs(mods) do
if stairsplus_legacy.has[mod] and stairsplus_legacy.settings[mod] then
stairsplus_legacy.dofile(mod)
end
end