* Desecration Demon - Made AI not using the sacrifice ability any more.

This commit is contained in:
LevelX2 2014-04-06 17:24:44 +02:00
parent ea49be8f06
commit 93b968d92a
3 changed files with 8 additions and 10 deletions

View file

@ -1064,7 +1064,7 @@ public class ComputerPlayer<T extends ComputerPlayer<T>> extends PlayerImpl<T> i
// Be proactive! Always use abilities, the evaluation function will decide if it's good or not
// Otherwise some abilities won't be used by AI like LoseTargetEffect that has "bad" outcome
// but still is good when targets opponent
return true;
return !outcome.equals(Outcome.AIDontUseIt); // Added for Desecration Demon sacrifice ability
}
@Override