mapmanager fix

This commit is contained in:
kremsy 2014-04-23 15:11:46 +02:00 committed by Steffen Schröder
parent 741edf65e9
commit 49cc059e66

View File

@ -240,9 +240,9 @@ class MapManager implements CallbackListener {
} }
// Remove map // Remove map
try{ try {
$this->maniaControl->client->removeMap($map->fileName); $this->maniaControl->client->removeMap($map->fileName);
}catch(MapNotInCurrentSelectionException $e){ } catch(MapNotInCurrentSelectionException $e) {
} }
@ -486,11 +486,8 @@ class MapManager implements CallbackListener {
$this->mapEnded = false; $this->mapEnded = false;
if (!isset($callback[1][0]["UId"])) { if (!isset($callback[1][0]["UId"])) {
// TODO: why can this even happen? $this->currentMap = $this->fetchCurrentMap();
$this->maniaControl->errorHandler->triggerDebugNotice('map uid not set! ' . print_r($callback, true)); } else if (array_key_exists($callback[1][0]["UId"], $this->maps)) {
return;
}
if (array_key_exists($callback[1][0]["UId"], $this->maps)) {
// Map already exists, only update index // Map already exists, only update index
$this->currentMap = $this->maps[$callback[1][0]["UId"]]; $this->currentMap = $this->maps[$callback[1][0]["UId"]];
if (!$this->currentMap->nbCheckpoints || !$this->currentMap->nbLaps) { if (!$this->currentMap->nbCheckpoints || !$this->currentMap->nbLaps) {
@ -516,7 +513,7 @@ class MapManager implements CallbackListener {
* @param array $callback * @param array $callback
*/ */
public function handleScriptBeginMap(array $callback) { public function handleScriptBeginMap(array $callback) {
// ignored $this->handleBeginMap(array());
} }
/** /**