catch change in progress exception
This commit is contained in:
parent
d6c3707219
commit
ec7f2f96d3
@ -23,6 +23,7 @@ use ManiaControl\Manialinks\ManialinkPageAnswerListener;
|
|||||||
use ManiaControl\Players\Player;
|
use ManiaControl\Players\Player;
|
||||||
use ManiaControl\Utils\ColorUtil;
|
use ManiaControl\Utils\ColorUtil;
|
||||||
use ManiaControl\Utils\Formatter;
|
use ManiaControl\Utils\Formatter;
|
||||||
|
use Maniaplanet\DedicatedServer\Xmlrpc\ChangeInProgressException;
|
||||||
use Maniaplanet\DedicatedServer\Xmlrpc\NextMapException;
|
use Maniaplanet\DedicatedServer\Xmlrpc\NextMapException;
|
||||||
use Maniaplanet\DedicatedServer\Xmlrpc\NotInListException;
|
use Maniaplanet\DedicatedServer\Xmlrpc\NotInListException;
|
||||||
use MCTeam\CustomVotesPlugin;
|
use MCTeam\CustomVotesPlugin;
|
||||||
@ -632,9 +633,12 @@ class MapList implements ManialinkPageAnswerListener, CallbackListener {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$this->maniaControl->client->JumpToMapIdent($map->uid);
|
$this->maniaControl->client->JumpToMapIdent($map->uid);
|
||||||
} catch (NextMapException $e) {
|
} catch (NextMapException $exception) {
|
||||||
return;
|
return;
|
||||||
} catch (NotInListException $e) {
|
} catch (NotInListException $exception) {
|
||||||
|
return;
|
||||||
|
} catch (ChangeInProgressException $exception) {
|
||||||
|
// TODO: delay skip if change is in progress
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user