diff --git a/Mage.Sets/src/mage/cards/a/ApproachOfTheSecondSun.java b/Mage.Sets/src/mage/cards/a/ApproachOfTheSecondSun.java index 17780304825..b3f68411e61 100644 --- a/Mage.Sets/src/mage/cards/a/ApproachOfTheSecondSun.java +++ b/Mage.Sets/src/mage/cards/a/ApproachOfTheSecondSun.java @@ -81,8 +81,7 @@ class ApproachOfTheSecondSunEffect extends OneShotEffect { } // Is the library now empty, thus the rise is on the bottom (for the message to the players)? - boolean isOnBottom = !controller.getLibrary().hasCards(); - + boolean isOnBottom = controller.getLibrary().size() < 6; // Put this card (if the ability came from an ApproachOfTheSecondSun spell card) on top spellCard.moveToZone(Zone.LIBRARY, source.getSourceId(), game, true); @@ -108,7 +107,7 @@ class ApproachOfTheSecondSunEffect extends OneShotEffect { class ApproachOfTheSecondSunWatcher extends Watcher { - private Map approachesCast = new HashMap<>(); + private Map approachesCast = new HashMap<>(); public ApproachOfTheSecondSunWatcher() { super(ApproachOfTheSecondSunWatcher.class.getName(), WatcherScope.GAME);