diff --git a/application/core/Configurators/ServerSettings.php b/application/core/Configurators/ServerSettings.php index 0f406498..ddf3f66c 100644 --- a/application/core/Configurators/ServerSettings.php +++ b/application/core/Configurators/ServerSettings.php @@ -281,6 +281,15 @@ class ServerSettings implements ConfiguratorMenu, CallbackListener { return true; } + $rewriteSettings = array('NextUseChangingValidationSeed' => 'UseChangingValidationSeed'); + foreach ($rewriteSettings as $oldName => $newName) { + if (array_key_exists($oldName, $newSettings)) { + $setting = $newSettings[$oldName]; + unset($newSettings[$oldName]); + $newSettings[$newName] = $setting; + } + } + try { $this->maniaControl->client->setServerOptions($newSettings); } catch (ServerOptionsException $e) {