Added New Mods and Profiles Folders

This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
This commit is contained in:
2025-01-14 05:07:53 -05:00
parent 85c665b107
commit 376b4b9689
21217 changed files with 546254 additions and 0 deletions
@@ -0,0 +1,13 @@
local mcm_id = "meat_spoiling"
function on_mcm_load()
local options = {
id = mcm_id, sh = true,
gr = {
{ id = mcm_id , type = "slide" , link = "ui_options_slider_player", text = "ui_mcm_menu_" .. mcm_id, size = {512, 50}, spacing = 20},
{ id = "expiration_hours_raw", type = "input", val = 2, def = 48, min = 24, max = 144},
{ id = "expiration_hours_cooked", type = "input", val = 2, def = 120, min = 24, max = 360},
}
}
return options
end