forked from External/mage
fix #11450 (Sorin, Vengeful Bloodlord)
This commit is contained in:
parent
dd459c484f
commit
5aafa9ff46
1 changed files with 2 additions and 2 deletions
|
|
@ -84,8 +84,8 @@ enum SorinVengefulBloodlordAdjuster implements TargetAdjuster {
|
|||
xValue = ((PayVariableLoyaltyCost) cost).getAmount();
|
||||
}
|
||||
}
|
||||
FilterCard filter = new FilterCreatureCard("creature card with mana value " + xValue + " or less");
|
||||
filter.add(new ManaValuePredicate(ComparisonType.FEWER_THAN, xValue + 1));
|
||||
FilterCard filter = new FilterCreatureCard("creature card with mana value " + xValue);
|
||||
filter.add(new ManaValuePredicate(ComparisonType.EQUAL_TO, xValue));
|
||||
ability.getTargets().clear();
|
||||
ability.addTarget(new TargetCardInYourGraveyard(filter));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue