* Reworked some card movement to player methods (#4866).

This commit is contained in:
LevelX2 2020-07-15 00:42:08 +02:00
parent aad36dda19
commit 083c4bc5d4
27 changed files with 247 additions and 373 deletions

View file

@ -967,7 +967,7 @@ public abstract class PlayerImpl implements Player, Serializable {
if (cards.isEmpty()) {
return true;
}
game.informPlayers(getName() + " shuffels " + CardUtil.numberToText(cards.size(), "a")
game.informPlayers(getLogName() + " shuffels " + CardUtil.numberToText(cards.size(), "a")
+ " card" + (cards.size() == 1 ? "" : "s")
+ " into their library.");
boolean status = moveCards(cards, Zone.LIBRARY, source, game);