mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00: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…
Reference in a new issue