Fixed Tradewind Rider returning tokens.

This commit is contained in:
jendave
2011-08-06 08:14:24 +00:00
parent dd3710227f
commit 4ac7275449

View File

@@ -14946,9 +14946,12 @@ public class CardFactory_Creatures {
public void resolve() {
if(getTargetCard() == null) return;
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, getTargetCard().getOwner());
AllZone.GameAction.moveTo(hand, getTargetCard());
Card c = getTargetCard();
if(c.isToken()) AllZone.getZone(c).remove(c);
else {
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, c.getOwner());
AllZone.GameAction.moveTo(hand, c);
}
}
};//a1