- Fix for Unearth mistakenly being Exiled after it Resolves

This commit is contained in:
jendave
2011-08-06 15:02:44 +00:00
parent 1dcd531156
commit cad43f8a49
2 changed files with 15 additions and 56 deletions

View File

@@ -177,9 +177,9 @@ public class GameAction {
else moveTo(hand, c);
}
public void moveToPlay(Card c) {
public Card moveToPlay(Card c) {
PlayerZone play = AllZone.getZone(Constant.Zone.Battlefield, c.getOwner());
moveTo(play, c);
return moveTo(play, c);
}
public void moveToTopOfLibrary(Card c) {