Merge remote-tracking branch 'origin/master'

This commit is contained in:
Oleg Agafonov 2020-01-03 19:07:07 +04:00
commit e5f24fcf99

View file

@ -39,6 +39,9 @@ public class LookAtTopCardOfLibraryAnyTimeEffect extends ContinuousEffectImpl {
if (obj == null) {
return true;
}
if (!game.getState().getStack().isEmpty()) { // if a card is on the stack, don't allow it
return true;
}
controller.lookAtCards("Top card of " + obj.getIdName() + " controller's library", topCard, game);
return true;
}