Files
Rage 376b4b9689 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.
2025-01-14 05:07:53 -05:00

13 lines
536 B
Plaintext

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