mirror of
https://github.com/correl/mage.git
synced 2025-01-14 03:00:10 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
e5f24fcf99
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue