diff --git a/res/cards.txt b/res/cards.txt index 388250ffcd1..bb645aee026 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,7 +1,7 @@ Rampant Growth 1 G Sorcery -no text +Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library. Kor Firewalker W W diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 7c5806c2298..a577c731a92 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -17632,6 +17632,8 @@ public class CardFactory implements NewConstants { if(player.equals(Constant.Player.Human)) humanResolve(); else computerResolve(); + + AllZone.GameAction.shuffle(card.getController()); } public void computerResolve() { @@ -17681,7 +17683,6 @@ public class CardFactory implements NewConstants { library.remove(c); play.add(c); - AllZone.GameAction.shuffle(card.getController()); }//if }//resolve()