mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Ally Encampment - Fixed wrong conditional filter for the any mana ability.
This commit is contained in:
parent
12a8e69f3a
commit
e7e0125720
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ import mage.constants.Rarity;
|
|||
import mage.constants.Zone;
|
||||
import mage.filter.FilterSpell;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.ColorlessPredicate;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
|
||||
/**
|
||||
|
@ -55,7 +55,7 @@ public class AllyEncampment extends CardImpl {
|
|||
private static final FilterSpell filter = new FilterSpell("an Ally spell");
|
||||
|
||||
static {
|
||||
filter.add(new ColorlessPredicate());
|
||||
filter.add(new SubtypePredicate("Ally"));
|
||||
}
|
||||
|
||||
public AllyEncampment(UUID ownerId) {
|
||||
|
|
Loading…
Reference in a new issue