mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed minor bug of game log discard text.
This commit is contained in:
parent
0461f0718c
commit
262cc5e2b9
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ public abstract class PlayerImpl<T extends PlayerImpl<T>> implements Player, Ser
|
|||
discard(hand.get(target.getFirstTarget(), game), null, game);
|
||||
}
|
||||
int discarded =cardsStart - hand.size();
|
||||
game.informPlayers(new StringBuilder(getName()).append(" discards ").append(discarded).append(discarded == 1?"card":"cards").append(" (cleanup)").toString());
|
||||
game.informPlayers(new StringBuilder(getName()).append(" discards ").append(discarded).append(discarded == 1?" card":" cards").append(" (cleanup)").toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue