mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
wrong order of operands fixed
This commit is contained in:
@@ -752,7 +752,7 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
|||||||
c = inp.hasCancelled() ? null : inp.getSelected().get(0);
|
c = inp.hasCancelled() ? null : inp.getSelected().get(0);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
List<Card> chosen = GuiChoose.getChoices(selectPrompt, 0, mustChoose ? 1 : 0, fetchList);
|
List<Card> chosen = GuiChoose.getChoices(selectPrompt, mustChoose ? 1 : 0, 1, fetchList);
|
||||||
c = chosen.isEmpty() ? null : chosen.get(0);
|
c = chosen.isEmpty() ? null : chosen.get(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user