- Fix for last commit.

This commit is contained in:
Sloth
2013-07-12 09:42:41 +00:00
parent bf8be3096d
commit a849c03651

View File

@@ -227,7 +227,7 @@ public class GameAction {
} }
zoneFrom.remove(c); zoneFrom.remove(c);
} }
ZoneType fromZoneType = zoneFrom == null ? null : zoneFrom.getZoneType(); ZoneType fromZoneType = zoneFrom == null ? ZoneType.Stack : zoneFrom.getZoneType();
zoneTo.getCardsAddedThisTurn().add(fromZoneType, c); zoneTo.getCardsAddedThisTurn().add(fromZoneType, c);
// "enter the battlefield as a copy" - apply code here // "enter the battlefield as a copy" - apply code here
// but how to query for input here and continue later while the callers assume synchronous result? // but how to query for input here and continue later while the callers assume synchronous result?