method renamed

This commit is contained in:
Steffen Schröder 2014-06-14 19:08:07 +02:00
parent 9647a48fb6
commit 23ddeb539c
3 changed files with 4 additions and 4 deletions

View File

@ -356,7 +356,7 @@ class ManiaControl implements CommandListener, TimerListener {
}
// Connect finished
$this->log("Server Connection successfully established!");
$this->log('Server Connection successfully established!');
// Hide old widgets
$this->client->sendHideManialinkPage();

View File

@ -233,13 +233,13 @@ class ManiaExchangeManager {
}
/**
* Get Map Info Asynchronously
* Fetch Map Info asynchronously
*
* @param int $mapId
* @param callable $function
* @return bool
*/
public function getMapInfo($mapId, callable $function) {
public function fetchMapInfo($mapId, callable $function) {
// Get Title Prefix
$titlePrefix = $this->maniaControl->mapManager->getCurrentMap()->getGame();

View File

@ -245,7 +245,7 @@ class MapManager implements CallbackListener {
public function addMapFromMx($mapId, $login, $update = false) {
if (is_numeric($mapId)) {
// Check if map exists
$this->maniaControl->mapManager->mxManager->getMapInfo($mapId, function (MXMapInfo $mapInfo) use (&$login, &$update) {
$this->maniaControl->mapManager->mxManager->fetchMapInfo($mapId, function (MXMapInfo $mapInfo) use (&$login, &$update) {
if (!$mapInfo || !isset($mapInfo->uploaded)) {
// Invalid id
$this->maniaControl->chat->sendError('Invalid MX-Id!', $login);