mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
Indicate progress when searching for multiple cards
This commit is contained in:
@@ -774,7 +774,11 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
|||||||
c = Iterables.getFirst(fetchList, null);
|
c = Iterables.getFirst(fetchList, null);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
c = decider.getController().chooseSingleCardForZoneChange(destination, origin, sa, fetchList, delayedReveal, selectPrompt, !sa.hasParam("Mandatory"), decider);
|
String title = selectPrompt;
|
||||||
|
if (changeNum > 1) { //indicate progress if multiple cards being chosen
|
||||||
|
title += " (" + (i + 1) + " / " + changeNum + ")";
|
||||||
|
}
|
||||||
|
c = decider.getController().chooseSingleCardForZoneChange(destination, origin, sa, fetchList, delayedReveal, title, !sa.hasParam("Mandatory"), decider);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c == null) {
|
if (c == null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user