mapmanager fix
This commit is contained in:
parent
741edf65e9
commit
49cc059e66
@ -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());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user