Minor bugfix to Easterling Assailant 7C140

Previously, Easterling Assailant was able to heal itself.
This commit is contained in:
PhallenCassidy
2017-07-06 21:41:06 -04:00
committed by GitHub
parent 3bb28be24f
commit 704885e8b9

View File

@@ -45,7 +45,7 @@ public class Card7_140 extends AbstractMinion {
boolean hasInitiative = PlayConditions.hasInitiative(game, Side.SHADOW);
int healCount = hasInitiative ? 2 : 1;
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, healCount, healCount, Keyword.EASTERLING));
new ChooseAndHealCharactersEffect(action, playerId, healCount, healCount, Filters.not(self), Keyword.EASTERLING));
return Collections.singletonList(action);
}
return null;