fix Order of Succession

This commit is contained in:
igoudt 2018-07-08 13:54:27 +02:00
parent 7f27b5b948
commit 0162607ea1

View file

@ -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");