* Augur of Bolas - Fixed that the revealed cards were not moved to the bottom of the library if no instant/sorcery was included.

This commit is contained in:
LevelX2 2016-10-23 18:57:15 +02:00
parent b5123883ff
commit f0bbb8db7b

View file

@ -126,8 +126,8 @@ class AugurOfBolasEffect extends OneShotEffect {
topCards.remove(card); topCards.remove(card);
} }
} }
controller.putCardsOnBottomOfLibrary(topCards, game, source, true);
} }
controller.putCardsOnBottomOfLibrary(topCards, game, source, true);
} }
return true; return true;
} }