Fix log message for 'put into library N from top' effects

This commit is contained in:
Alex W. Jackson 2022-01-09 00:42:14 -05:00
parent ff03daee67
commit 13baf726e9

View file

@ -1011,7 +1011,7 @@ public abstract class PlayerImpl implements Player, Serializable {
if (cardInLib != null && cardInLib.getId().equals(card.getId())) { // check needed because e.g. commander can go to command zone
cardInLib = getLibrary().removeFromTop(game);
getLibrary().putCardToTopXPos(cardInLib, xFromTheTop, game);
game.informPlayers(withName ? cardInLib.getLogName() : "A card"
game.informPlayers((withName ? cardInLib.getLogName() : "A card")
+ " is put into "
+ getLogName()
+ "'s library "