removed useless methods
This commit is contained in:
committed by
Steffen Schröder
parent
cf47fb1792
commit
0a787e97be
@ -498,7 +498,7 @@ class MapManager implements CallbackListener {
|
||||
return;
|
||||
}
|
||||
|
||||
$serverInfo = $this->maniaControl->server->getSystemInfo();
|
||||
$serverInfo = $this->maniaControl->client->getSystemInfo();
|
||||
$title = strtolower(substr($serverInfo->titleId, 0, 2));
|
||||
|
||||
$url = "http://{$title}.mania-exchange.com/tracks/download/{$mapInfo->id}";
|
||||
|
@ -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
|
||||
*
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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();
|
||||
|
Reference in New Issue
Block a user