From ce1b5b5d00fe097bd62e72835df4c79755b52412 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 14 Feb 2023 00:11:54 +0100 Subject: [PATCH] Use config presets for server configuration. (#14098) --- .../ConfigPresets/WizardsDen/centipede.toml | 4 ++++ Resources/ConfigPresets/WizardsDen/lizard.toml | 7 +++++++ Resources/ConfigPresets/WizardsDen/miros.toml | 4 ++++ .../ConfigPresets/WizardsDen/salamander.toml | 16 ++++++++++++++++ Resources/ConfigPresets/WizardsDen/spider.toml | 4 ++++ .../ConfigPresets/WizardsDen/wizardsDen.toml | 5 +++++ Tools/package_client_build.py | 1 + 7 files changed, 41 insertions(+) create mode 100644 Resources/ConfigPresets/WizardsDen/centipede.toml create mode 100644 Resources/ConfigPresets/WizardsDen/lizard.toml create mode 100644 Resources/ConfigPresets/WizardsDen/miros.toml create mode 100644 Resources/ConfigPresets/WizardsDen/salamander.toml create mode 100644 Resources/ConfigPresets/WizardsDen/spider.toml create mode 100644 Resources/ConfigPresets/WizardsDen/wizardsDen.toml diff --git a/Resources/ConfigPresets/WizardsDen/centipede.toml b/Resources/ConfigPresets/WizardsDen/centipede.toml new file mode 100644 index 0000000000..4c4ddc442a --- /dev/null +++ b/Resources/ConfigPresets/WizardsDen/centipede.toml @@ -0,0 +1,4 @@ +# Configuration preset used on Wizard's Den Centipede + +[game] +hostname = "[EN] Wizard's Den Centipede [Oceania]" diff --git a/Resources/ConfigPresets/WizardsDen/lizard.toml b/Resources/ConfigPresets/WizardsDen/lizard.toml new file mode 100644 index 0000000000..061326eee1 --- /dev/null +++ b/Resources/ConfigPresets/WizardsDen/lizard.toml @@ -0,0 +1,7 @@ +# Configuration preset used on Wizard's Den Lizard + +# Nothing specific yet + +[game] +hostname = "[EN] Wizard's Den Lizard [US West]" +soft_max_players = 100 diff --git a/Resources/ConfigPresets/WizardsDen/miros.toml b/Resources/ConfigPresets/WizardsDen/miros.toml new file mode 100644 index 0000000000..688e98dfee --- /dev/null +++ b/Resources/ConfigPresets/WizardsDen/miros.toml @@ -0,0 +1,4 @@ +# Configuration preset used on Wizard's Den Miros + +[game] +hostname = "[EN] Wizard's Den Miros [EU West 2]" diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml new file mode 100644 index 0000000000..d6a310ba28 --- /dev/null +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -0,0 +1,16 @@ +# Configuration preset used on Wizard's Den Salamander + +[game] +desc = "Official English Space Station 14 servers. Roleplay required, you must be whitelisted through Discord to play." +hostname = "[EN] Wizard's Den Salamander [US West RP]" + +[server] +rules_file = "RP_Rules.txt" +rules_header = "ui-rules-header-rp" + +[whitelist] +enabled = true +reason = "whitelist-not-whitelisted-rp" + +[ic] +flavor_text = true diff --git a/Resources/ConfigPresets/WizardsDen/spider.toml b/Resources/ConfigPresets/WizardsDen/spider.toml new file mode 100644 index 0000000000..477d25976a --- /dev/null +++ b/Resources/ConfigPresets/WizardsDen/spider.toml @@ -0,0 +1,4 @@ +# Configuration preset used on Wizard's Den Spider + +[game] +hostname = "[EN] Wizard's Den Spider [EU West 1]" diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml new file mode 100644 index 0000000000..1cf78d4e6f --- /dev/null +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -0,0 +1,5 @@ +# Base configuration preset used on all Wizard's Den servers. +# Loaded before server-specific config presets by configuration. + +[game] +desc = "Official English Space Station 14 servers. Vanilla, low roleplay." diff --git a/Tools/package_client_build.py b/Tools/package_client_build.py index ad9a1825fa..15bc213cb9 100755 --- a/Tools/package_client_build.py +++ b/Tools/package_client_build.py @@ -37,6 +37,7 @@ SHARED_IGNORED_RESOURCES = { CLIENT_IGNORED_RESOURCES = { "Maps", + "ConfigPresets", "emotes.xml", "Groups", "engineCommandPerms.yml" -- 2.52.0