- Small tweaks to Rampant Growth.

This commit is contained in:
jendave
2011-08-06 03:57:10 +00:00
parent c4ebceea0b
commit a7989ca4f9
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
Rampant Growth Rampant Growth
1 G 1 G
Sorcery 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 Kor Firewalker
W W W W

View File

@@ -17632,6 +17632,8 @@ public class CardFactory implements NewConstants {
if(player.equals(Constant.Player.Human)) humanResolve(); if(player.equals(Constant.Player.Human)) humanResolve();
else computerResolve(); else computerResolve();
AllZone.GameAction.shuffle(card.getController());
} }
public void computerResolve() { public void computerResolve() {
@@ -17681,7 +17683,6 @@ public class CardFactory implements NewConstants {
library.remove(c); library.remove(c);
play.add(c); play.add(c);
AllZone.GameAction.shuffle(card.getController());
}//if }//if
}//resolve() }//resolve()