- Ingame configurator -> script settings

- fixed local records plugin
- fixed systeminfo command
- FML update
This commit is contained in:
Steffen Schröder
2013-11-28 17:36:39 +01:00
parent fed96b36d0
commit 4951829017
7 changed files with 468 additions and 21 deletions

View File

@ -80,7 +80,7 @@ class ServerCommands implements CallbackListener, CommandListener {
}
$systemInfo = $this->maniaControl->server->getSystemInfo();
$message = 'SystemInfo: ip=' . $systemInfo['PublishedIp'] . ', port=' . $systemInfo['Port'] . ', p2pPort=' .
$systemInfo['P2PPort'] . ', title=' . $systemInfo['TitleId'] . ', login=' . $systemInfo['ServerLogin'] . ', ';
$systemInfo['P2PPort'] . ', title=' . $systemInfo['TitleId'] . ', login=' . $systemInfo['ServerLogin'] . '.';
return $this->maniaControl->chat->sendInformation($message, $player->login);
}