* AI: planeswalkers gets more priority in targets selection;

This commit is contained in:
Oleg Agafonov 2019-06-26 21:45:15 +04:00
parent 7e08b3c3d5
commit 073b003b37
2 changed files with 11 additions and 11 deletions

View file

@ -1,7 +1,6 @@
package mage.constants;
/**
*
* @author North
*/
public enum Outcome {
@ -41,7 +40,7 @@ public enum Outcome {
Removal(false),
AIDontUseIt(false),
Vote(true);
private final boolean good;
private final boolean good; // good or bad for targets in current effect
private boolean canTargetAll;
Outcome(boolean good) {