ServerManagers/src/ARKServerManager/Enums/ServerSettingsResetAction.cs
2023-08-09 18:21:19 +02:00

47 lines
1.3 KiB
C#

namespace ServerManagerTool.Enums
{
public enum ServerSettingsResetAction
{
// Sections
AdministrationSection,
DiscordBotSection,
ServerDetailsSection,
RulesSection,
ChatAndNotificationsSection,
HudAndVisualsSection,
PlayerSettingsSection,
DinoSettingsSection,
EnvironmentSection,
StructuresSection,
EngramsSection,
CustomLevelsSection,
SOTFSection,
PGMSection,
MapSpawnerOverridesSection,
CraftingOverridesSection,
SupplyCrateOverridesSection,
ExcludeItemIndicesOverridesSection,
StackSizeOverridesSection,
PreventTransferOverridesSection,
// Properties
MapNameTotalConversionProperty,
BanListProperty,
PlayerMaxXpProperty,
DinoMaxXpProperty,
PlayerBaseStatMultipliers,
PlayerPerLevelStatMultipliers,
DinoWildPerLevelStatMultipliers,
DinoTamedPerLevelStatMultipliers,
DinoTamedAddPerLevelStatMultipliers,
DinoTamedAffinityPerLevelStatMultipliers,
DinoWildMutagenLevelBoost,
DinoBredMutagenLevelBoost,
ItemStatClamps,
RCONWindowExtents,
ServerOptions,
ServerLogOptions,
ServerBadWordFilterOptions,
}
}