Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
27
mods/moreblocks/stairsplus_legacy/init.lua
Normal file
27
mods/moreblocks/stairsplus_legacy/init.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue