diff --git a/Mage.Sets/src/mage/cards/b/BogBadger.java b/Mage.Sets/src/mage/cards/b/BogBadger.java index c7ca0c69ec0..9bfb69130ad 100644 --- a/Mage.Sets/src/mage/cards/b/BogBadger.java +++ b/Mage.Sets/src/mage/cards/b/BogBadger.java @@ -12,6 +12,7 @@ import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.SubType; +import mage.filter.StaticFilters; import java.util.UUID; @@ -33,7 +34,7 @@ public final class BogBadger extends CardImpl { // When Bog Badger enters the battlefield, if it was kicked, creatures you control gain menace until end of turn. this.addAbility(new ConditionalInterveningIfTriggeredAbility( new EntersBattlefieldTriggeredAbility(new GainAbilityControlledEffect( - new MenaceAbility(false), Duration.EndOfTurn + new MenaceAbility(false), Duration.EndOfTurn, StaticFilters.FILTER_PERMANENT_CREATURES )), KickedCondition.ONCE, "When {this} enters the battlefield, " + "if it was kicked, creatures you control gain menace until end of turn. " + "(A creature with menace can't be blocked except by two or more creatures.)"