* AI: fixed wrong targeting for gain control abilities (#6340);

This commit is contained in:
Oleg Agafonov 2020-03-11 18:22:58 +04:00
parent 3cd5682db7
commit 14ddb6eb28
7 changed files with 99 additions and 24 deletions

View file

@ -70,8 +70,8 @@ public class TargetOpponentsChoicePermanent extends TargetPermanent {
return false;
}
// opponent choose real targets (outcome must be inversed)
return super.chooseTarget(Outcome.inverse(outcome), opponentId, source, game);
// opponent choose real targets
return super.chooseTarget(outcome, opponentId, source, game);
}
@Override