Mordor Assassin

No longer crashes the game if the RB is overwhelmed
This commit is contained in:
Phallen Cassidy
2021-02-19 08:42:41 -05:00
parent 09ad118f5d
commit 4bc9076594

View File

@@ -45,7 +45,8 @@ public class Card7_284 extends AbstractMinion {
KilledResult killResult = threatWoundsEffect.getKillResult();
if (killResult.getCause() == KillEffect.Cause.OVERWHELM
&& Filters.filter(killResult.getKilledCards(), game, CardType.COMPANION).size() > 0
&& Filters.canSpot(game, Filters.inSkirmish, Culture.SAURON, Race.ORC)) {
&& Filters.canSpot(game, Filters.inSkirmish, Culture.SAURON, Race.ORC)
&& Filters.canSpot(game, Filters.ringBearer)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new RemoveThreatsEffect(self, 1));