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
*