mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
47 lines
1.3 KiB
C#
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,
|
|
}
|
|
}
|