From f0bbb8db7b091505eb89779391e61a2b8ace76e6 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 23 Oct 2016 18:57:15 +0200 Subject: [PATCH] * Augur of Bolas - Fixed that the revealed cards were not moved to the bottom of the library if no instant/sorcery was included. --- Mage.Sets/src/mage/cards/a/AugurOfBolas.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AugurOfBolas.java b/Mage.Sets/src/mage/cards/a/AugurOfBolas.java index 5a57a280e24..30b6bd28470 100644 --- a/Mage.Sets/src/mage/cards/a/AugurOfBolas.java +++ b/Mage.Sets/src/mage/cards/a/AugurOfBolas.java @@ -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; }