Minor bugfix to Easterling Assailant 7C140
Previously, Easterling Assailant was able to heal itself.
This commit is contained in:
@@ -45,7 +45,7 @@ public class Card7_140 extends AbstractMinion {
|
|||||||
boolean hasInitiative = PlayConditions.hasInitiative(game, Side.SHADOW);
|
boolean hasInitiative = PlayConditions.hasInitiative(game, Side.SHADOW);
|
||||||
int healCount = hasInitiative ? 2 : 1;
|
int healCount = hasInitiative ? 2 : 1;
|
||||||
action.appendEffect(
|
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 Collections.singletonList(action);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user