forked from External/mage
* Bala-Ged Thief - Fixed bug in inform players message text.
This commit is contained in:
parent
881792c36d
commit
53f0aebc35
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ class BalaGedThiefEffect extends OneShotEffect<BalaGedThiefEffect> {
|
|||
Card card = revealedCards.get(targetInHand.getFirstTarget(), game);
|
||||
if (card != null) {
|
||||
targetPlayer.discard(card, source, game);
|
||||
game.informPlayers(targetPlayer + "discarded " + card.getName());
|
||||
game.informPlayers(new StringBuilder("Bala Ged Thief: ").append(targetPlayer.getName()).append(" discarded ").append(card.getName()).toString());
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue