* 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

@ -63,7 +63,7 @@ public class AugurOfBolas extends CardImpl {
}
public AugurOfBolas(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}");
this.subtype.add("Merfolk");
this.subtype.add("Wizard");
@ -126,8 +126,8 @@ class AugurOfBolasEffect extends OneShotEffect {
topCards.remove(card);
}
}
controller.putCardsOnBottomOfLibrary(topCards, game, source, true);
}
controller.putCardsOnBottomOfLibrary(topCards, game, source, true);
}
return true;
}