Minor changes.

This commit is contained in:
LevelX2 2015-11-04 17:16:45 +01:00
parent 54d28550b4
commit af18f95bba
2 changed files with 8 additions and 6 deletions

View file

@ -662,9 +662,13 @@ public class TestPlayer implements Player {
}
}
if (targetFound && targetCard.isChosen()) {
choices.remove(choose2);
return true;
if (targetFound) {
if (targetCard.isChosen()) {
choices.remove(choose2);
return true;
} else {
target.clearChosen();
}
}
}
}