- Fixed Crib Swap ordering issue.

This commit is contained in:
jendave
2011-08-06 05:19:49 +00:00
parent 16fa6d8c0e
commit 2d376808f1

View File

@@ -6437,11 +6437,13 @@ public class CardFactory implements NewConstants {
public void resolve() {
if(AllZone.GameAction.isCardInPlay(getTargetCard())
&& CardFactoryUtil.canTarget(card, getTargetCard())) {
CardFactoryUtil.makeToken("Shapeshifter", "C 1 1 Shapeshifter",
getTargetCard().getController(), "", new String[] {"Creature", "Shapeshifter"}, 1,
1, new String[] {"Changeling"});
//remove card from play
String controller = getTargetCard().getController();
AllZone.GameAction.removeFromGame(getTargetCard());
CardFactoryUtil.makeToken("Shapeshifter", "C 1 1 Shapeshifter",
controller, "", new String[] {"Creature", "Shapeshifter"}, 1,
1, new String[] {"Changeling"});
}
}//resolve()