mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
fixed Cheville, Bane of Monsters triggering when opposing permanents have bounty counters
This commit is contained in:
parent
58541b8a24
commit
09a7997479
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ public final class ChevillBaneOfMonsters extends CardImpl {
|
|||
filter3.add(predicate);
|
||||
}
|
||||
|
||||
private static final Condition condition = new PermanentsOnTheBattlefieldCondition(filter, ComparisonType.EQUAL_TO, 0);
|
||||
private static final Condition condition
|
||||
= new PermanentsOnTheBattlefieldCondition(filter, ComparisonType.EQUAL_TO, 0, false);
|
||||
|
||||
public ChevillBaneOfMonsters(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{B}{G}");
|
||||
|
|
Loading…
Reference in a new issue