removed useless methods

This commit is contained in:
kremsy
2014-02-15 13:04:31 +01:00
committed by Steffen Schröder
parent cf47fb1792
commit 0a787e97be
7 changed files with 9 additions and 46 deletions

View File

@ -66,7 +66,7 @@ class Server implements CallbackListener {
*/
private function updateProperties() {
// System info
$systemInfo = $this->getSystemInfo();
$systemInfo = $this->maniaControl->client->getSystemInfo();
$this->ip = $systemInfo->publishedIp;
$this->port = $systemInfo->port;
$this->p2pPort = $systemInfo->p2PPort;
@ -205,43 +205,6 @@ class Server implements CallbackListener {
return $this->maniaControl->client->getMainServerPlayerInfo();
}
/**
* Get Server Options
*
* @return ServerOptions
*/
public function getOptions() {
return $this->maniaControl->client->getServerOptions();
}
/**
* Fetch current Server Name
*
* @return string
*/
public function getName() {
return $this->maniaControl->client->getServerName();
}
/**
* Fetch Server Version
*
* @return Version
*/
public function getVersion() {
return $this->maniaControl->client->getVersion();
}
/**
* Fetch Server System Info
*
* @return SystemInfos
*/
public function getSystemInfo() {
return $this->maniaControl->client->getSystemInfo();
}
/**
* Fetch current Game Mode
*

View File

@ -257,7 +257,7 @@ class ServerCommands implements CallbackListener, CommandListener, ManialinkPage
$this->maniaControl->authenticationManager->sendNotAllowed($player);
return;
}
$systemInfo = $this->maniaControl->server->getSystemInfo();
$systemInfo = $this->maniaControl->client->getSystemInfo();
$message = 'SystemInfo: ip=' . $systemInfo->publishedIp . ', port=' . $systemInfo->port . ', p2pPort=' . $systemInfo->p2PPort . ', title=' . $systemInfo->titleId . ', login=' . $systemInfo->serverLogin . '.';
$this->maniaControl->chat->sendInformation($message, $player->login);
}

View File

@ -54,7 +54,7 @@ class UsageReporter implements TimerListener {
$properties['PHPVersion'] = phpversion();
$properties['ServerLogin'] = $this->maniaControl->server->login;
$properties['TitleId'] = $this->maniaControl->server->titleId;
$properties['ServerName'] = Formatter::stripDirtyCodes($this->maniaControl->server->getName());
$properties['ServerName'] = Formatter::stripDirtyCodes($this->maniaControl->client->getServerName());
$properties['PlayerCount'] = $this->maniaControl->playerManager->getPlayerCount();
$maxPlayers = $this->maniaControl->client->getMaxPlayers();