From e11a2c30e23070e51ad8b7f11a95bc13272637ba Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 15 May 2013 00:43:29 +0200 Subject: [PATCH] Fixed Augur of Bolas returning cards not to bottom of library, --- Mage.Sets/src/mage/sets/magic2013/AugurOfBolas.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/magic2013/AugurOfBolas.java b/Mage.Sets/src/mage/sets/magic2013/AugurOfBolas.java index 97b28aea783..78196ba3ed1 100644 --- a/Mage.Sets/src/mage/sets/magic2013/AugurOfBolas.java +++ b/Mage.Sets/src/mage/sets/magic2013/AugurOfBolas.java @@ -32,6 +32,7 @@ import mage.Constants.CardType; import mage.Constants.Rarity; import mage.MageInt; import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.dynamicvalue.common.StaticValue; import mage.abilities.effects.common.LookLibraryAndPickControllerEffect; import mage.cards.CardImpl; import mage.filter.FilterCard; @@ -60,7 +61,7 @@ public class AugurOfBolas extends CardImpl { this.toughness = new MageInt(3); // When Augur of Bolas enters the battlefield, look at the top three cards of your library. You may reveal an instant or sorcery card from among them and put it into your hand. Put the rest on the bottom of your library in any order. - this.addAbility(new EntersBattlefieldTriggeredAbility(new LookLibraryAndPickControllerEffect(3, 1, filter, false))); + this.addAbility(new EntersBattlefieldTriggeredAbility(new LookLibraryAndPickControllerEffect(new StaticValue(3), false, new StaticValue(1), filter, false, true))); } public AugurOfBolas(final AugurOfBolas card) {