mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
Fix so Cancel search prompt works as expected
This commit is contained in:
@@ -803,7 +803,7 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
||||
final int num = Math.min(fetchList.size(), changeNum - i);
|
||||
String message = "Cancel Search? Up to " + num + " more card" + (num != 1 ? "s" : "") + " can be selected.";
|
||||
|
||||
if (fetchList.isEmpty() || decider.getController().confirmAction(sa, PlayerActionConfirmMode.ChangeZoneGeneral, message)) {
|
||||
if (fetchList.isEmpty() || !decider.getController().confirmAction(sa, PlayerActionConfirmMode.ChangeZoneGeneral, message)) {
|
||||
break;
|
||||
}
|
||||
i--;
|
||||
|
||||
Reference in New Issue
Block a user