Files
The-Only-Cure/media/lua/server/TOC_ServerOptions.lua
Pao a9267a7afc Some new features
- Modified meshes for equippable prosthesis so they don't clip with jackets
- ModOptions option to set sleeves up when you've got an amputation
2023-01-27 18:10:30 +01:00

18 lines
341 B
Lua

local options = TOC_Options
-- TODO Can't trigger OnGameBoot from here since it's client only
-- Check actual options at game loading.
Events.OnGameStart.Add(function()
if not isClient() then -- only host may take these options
print("Roll up sleeves for amputated limbs = ", options.rollUpSleeveForAmputatedLimbs)
end
end)