mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
fix Order of Succession
This commit is contained in:
parent
7f27b5b948
commit
0162607ea1
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ class OrderOfSuccessionEffect extends OneShotEffect {
|
|||
if (controller != null) {
|
||||
Map<UUID, UUID> playerCreature = new HashMap<>(2);
|
||||
Choice choice = new ChoiceLeftOrRight();
|
||||
if (controller.choose(Outcome.Neutral, choice, game)) {
|
||||
if (!controller.choose(Outcome.Neutral, choice, game)) {
|
||||
return false;
|
||||
}
|
||||
boolean left = choice.getChoice().equals("Left");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue