Transitioning the configs
Last updated
Was this helpful?
Last updated
Was this helpful?
In the latest update, we have moved and split the config to make it more sustainable to extend and modify. To avoid losing your valuable modifications, follow this brief guide on transitioning to the new version!
With the latest update we created a new folder (configs
)
In this folder you can find:
expansions: used for managing configs of expansions (eg. pizza) config_functions.lua: classic config for functions general.lua: here you can find things that doesnt have a specific category/section (debug, translations, recovery, ecc..) interactions.lua: previous Config.Interactions items.lua: previous Config.Items kitchens.lua: previous Config.Kitchens
copy your config_functions.lua in config_functions.lua
copy your config.lua in general.lua
Now from general.lua:
remove Config.Kitchens and move it to kitchens.lua
remove Config.Interactions and move it to interactions.lua
replace Config.Expansions with an empty table ({}
)
remove Config.Items and move it to items.lua
Your final general.lua should be something like this: