mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[MH1] fixed Iceberg Cancrix that it triggers on yourself
This commit is contained in:
parent
6b8ea2ac50
commit
6d518c62e6
1 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,7 @@ import mage.constants.SuperType;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.filter.FilterPermanent;
|
import mage.filter.FilterPermanent;
|
||||||
import mage.filter.predicate.mageobject.SupertypePredicate;
|
import mage.filter.predicate.mageobject.SupertypePredicate;
|
||||||
|
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||||
import mage.target.TargetPlayer;
|
import mage.target.TargetPlayer;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -24,6 +25,7 @@ public final class IcebergCancrix extends CardImpl {
|
||||||
private static final FilterPermanent filter = new FilterPermanent();
|
private static final FilterPermanent filter = new FilterPermanent();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
|
filter.add(AnotherPredicate.instance);
|
||||||
filter.add(new SupertypePredicate(SuperType.SNOW));
|
filter.add(new SupertypePredicate(SuperType.SNOW));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue