From 0e58d4fad4df52ca38cd5a5bb37d84c93f40601c Mon Sep 17 00:00:00 2001 From: Steven Knipe Date: Tue, 20 May 2025 02:09:40 -0700 Subject: [PATCH] Quilled Charger: Saddle Duration fix --- Mage.Sets/src/mage/cards/q/QuilledCharger.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/q/QuilledCharger.java b/Mage.Sets/src/mage/cards/q/QuilledCharger.java index 1d41b2ae941..783f98b3680 100644 --- a/Mage.Sets/src/mage/cards/q/QuilledCharger.java +++ b/Mage.Sets/src/mage/cards/q/QuilledCharger.java @@ -32,7 +32,7 @@ public final class QuilledCharger extends CardImpl { Ability ability = new AttacksWhileSaddledTriggeredAbility( new BoostSourceEffect(1, 2, Duration.EndOfTurn).setText("it gets +1/+2") ); - ability.addEffect(new GainAbilitySourceEffect(new MenaceAbility(false)) + ability.addEffect(new GainAbilitySourceEffect(new MenaceAbility(false), Duration.EndOfTurn) .setText("and gains menace until end of turn")); this.addAbility(ability);