method renamed
This commit is contained in:
		@@ -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();
 | 
			
		||||
 
 | 
			
		||||
@@ -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();
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user