mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +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.filter.FilterPermanent;
|
||||
import mage.filter.predicate.mageobject.SupertypePredicate;
|
||||
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||
import mage.target.TargetPlayer;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -24,6 +25,7 @@ public final class IcebergCancrix extends CardImpl {
|
|||
private static final FilterPermanent filter = new FilterPermanent();
|
||||
|
||||
static {
|
||||
filter.add(AnotherPredicate.instance);
|
||||
filter.add(new SupertypePredicate(SuperType.SNOW));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue