mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Fix for last commit.
This commit is contained in:
@@ -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?
|
||||||
|
|||||||
Reference in New Issue
Block a user