From dd0a65ec9352d0215175407f5b0cda82e3515c75 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Sun, 8 Apr 2018 22:45:07 -0400 Subject: [PATCH] Update YodaJediMaster.java Update to handle change to LookLibraryAndPickControllerEffect adding new param for 'random order' returns --- Mage.Sets/src/mage/cards/y/YodaJediMaster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/y/YodaJediMaster.java b/Mage.Sets/src/mage/cards/y/YodaJediMaster.java index fed889a31d4..af22701cd9d 100644 --- a/Mage.Sets/src/mage/cards/y/YodaJediMaster.java +++ b/Mage.Sets/src/mage/cards/y/YodaJediMaster.java @@ -76,7 +76,7 @@ public class YodaJediMaster extends CardImpl { // +1: Look at the top two cards of your library. Put one on the bottom of your library. Effect effect = new LookLibraryAndPickControllerEffect(new StaticValue(2), false, new StaticValue(1), - new FilterCard(), Zone.LIBRARY, true, false, false, Zone.LIBRARY, false, false); + new FilterCard(), Zone.LIBRARY, true, false, false, Zone.LIBRARY, false, false, true); effect.setText("Look at the top two cards of your library. Put one on the bottom of your library"); this.addAbility(new LoyaltyAbility(effect, 1));