exception fix

This commit is contained in:
kremsy 2014-04-14 19:50:56 +02:00 committed by Steffen Schröder
parent cf12c8af43
commit 2db2c88554
2 changed files with 5 additions and 4 deletions

View File

@ -192,8 +192,9 @@ class PlayerActions {
try {
$this->maniaControl->client->spectatorReleasePlayerSlot($target->login);
} catch(Exception $e) {
$this->maniaControl->chat->sendException($e, $admin->login);
return;
if($e->getMessage() != "The player is not a spectator"){
throw $e;
}
}
}
}

View File

@ -651,7 +651,7 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener, Timer
$this->maniaControl->client->forceSpectator($adminLogin, PlayerActions::SPECTATOR_BUT_KEEP_SELECTABLE);
$this->maniaControl->client->forceSpectatorTarget($adminLogin, $targetLogin, 1);
} catch(Exception $e) {
if($e->getMessage() != "This player is not a spectator."){
if($e->getMessage() != "The player is not a spectator"){
throw $e;
}
}
@ -725,7 +725,7 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener, Timer
$this->maniaControl->client->forceSpectator($target->login, PlayerActions::SPECTATOR_BUT_KEEP_SELECTABLE);
$this->maniaControl->client->spectatorReleasePlayerSlot($target->login);
} catch(Exception $e) {
if ($e->getMessage() != 'Login unknown.' && $e->getMessage() != 'The player is not a spectator.') {
if ($e->getMessage() != 'Login unknown.' && $e->getMessage() != 'The player is not a spectator') {
$this->maniaControl->chat->sendException($e);
}
}