renamed plugin install menu class

This commit is contained in:
Steffen Schröder
2014-07-01 21:23:50 +02:00
parent 072120064f
commit a17e681ef0
4 changed files with 7 additions and 7 deletions

View File

@ -125,11 +125,11 @@ class ServerSettings implements ConfiguratorMenu, CallbackListener {
try {
$serverOptions = ServerOptions::fromArray($savedSettings);
$success = $this->maniaControl->client->setServerOptions($serverOptions);
return $this->maniaControl->client->setServerOptions($serverOptions);
} catch (ServerOptionsException $exception) {
$this->maniaControl->chat->sendExceptionToAdmins($exception);
}
return $success;
return false;
}
/**