minor bugfix

This commit is contained in:
kremsy 2014-08-14 19:08:23 +02:00
parent fd722d7105
commit 05e70ef8e2

View File

@ -238,7 +238,7 @@ class PlayerActions {
try {
$this->maniaControl->getClient()->unIgnore($targetLogin);
} catch (NotInListException $e) {
$this->maniaControl->getChat()->sendError('Player is not ignored!');
$this->maniaControl->getChat()->sendError('Player is not ignored!', $adminLogin);
return;
}
@ -271,7 +271,7 @@ class PlayerActions {
try {
$this->maniaControl->getClient()->ignore($targetLogin);
} catch (AlreadyInListException $e) {
$this->maniaControl->getChat()->sendError("Player already ignored!");
$this->maniaControl->getChat()->sendError("Player already ignored!", $adminLogin);
return;
}