mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* 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:
parent
b5123883ff
commit
f0bbb8db7b
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue