- Experimental: TokenAi: do not use a "80% chance to generate a token" chance when the token-generating ability is otherwise relevant. Prevents the AI from missing activations of planeswalker token generation abilities on casting a planeswalker, as well as indecisively creating tokens via The Hive and other similar cards before Declare Blockers when on defense. Will run some tests with this later, or may convert to an AI profile variable.

This commit is contained in:
Agetian
2017-08-21 10:19:48 +00:00
parent b24f31f98c
commit cfe9c17b58

View File

@@ -233,7 +233,9 @@ public class TokenAi extends SpellAbilityAi {
} }
} }
} }
return MyRandom.getRandom().nextFloat() < .8;
return true;
//return MyRandom.getRandom().nextFloat() < .8;
} }
/** /**