diff --git a/Mage/src/main/java/mage/abilities/effects/common/PermanentsEnterBattlefieldTappedEffect.java b/Mage/src/main/java/mage/abilities/effects/common/PermanentsEnterBattlefieldTappedEffect.java index f2fbb335c9..05c61e0fc6 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/PermanentsEnterBattlefieldTappedEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/PermanentsEnterBattlefieldTappedEffect.java @@ -23,7 +23,7 @@ public class PermanentsEnterBattlefieldTappedEffect extends ReplacementEffectImp } public PermanentsEnterBattlefieldTappedEffect(FilterPermanent filter, Duration duration) { - super(duration, Outcome.Tap); + super(duration, Outcome.Tap, false); this.filter = filter; }