mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Shifting Sliver - Fixed that the "Can't be blocked" ability was applied to non slivers instead of Slivers.
This commit is contained in:
parent
077f62c4ff
commit
03ad44a0e3
1 changed files with 3 additions and 5 deletions
|
@ -29,10 +29,8 @@ package mage.sets.legions;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
import mage.abilities.effects.common.combat.CantBeBlockedByCreaturesAllEffect;
|
import mage.abilities.effects.common.combat.CantBeBlockedByCreaturesAllEffect;
|
||||||
import mage.abilities.effects.common.continuous.GainAbilityAllEffect;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
|
@ -52,7 +50,7 @@ public class ShiftingSliver extends CardImpl {
|
||||||
private static final FilterCreaturePermanent filterBlockedBy = new FilterCreaturePermanent("except by Slivers");
|
private static final FilterCreaturePermanent filterBlockedBy = new FilterCreaturePermanent("except by Slivers");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filterCreatures.add(Predicates.not(new SubtypePredicate("Sliver")));
|
filterCreatures.add(new SubtypePredicate("Sliver"));
|
||||||
filterBlockedBy.add(Predicates.not(new SubtypePredicate("Sliver")));
|
filterBlockedBy.add(Predicates.not(new SubtypePredicate("Sliver")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue