mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Fixed Tradewind Rider returning tokens.
This commit is contained in:
@@ -14946,9 +14946,12 @@ public class CardFactory_Creatures {
|
|||||||
public void resolve() {
|
public void resolve() {
|
||||||
|
|
||||||
if(getTargetCard() == null) return;
|
if(getTargetCard() == null) return;
|
||||||
|
Card c = getTargetCard();
|
||||||
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, getTargetCard().getOwner());
|
if(c.isToken()) AllZone.getZone(c).remove(c);
|
||||||
AllZone.GameAction.moveTo(hand, getTargetCard());
|
else {
|
||||||
|
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, c.getOwner());
|
||||||
|
AllZone.GameAction.moveTo(hand, c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};//a1
|
};//a1
|
||||||
|
|||||||
Reference in New Issue
Block a user