From 5aa5322ff44484bc4f8501e9b1de53a42673183f Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Fri, 18 Feb 2022 14:05:07 -0500 Subject: [PATCH] [STX] Fix Mentor's Guidance cast trigger --- Mage.Sets/src/mage/cards/m/MentorsGuidance.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/m/MentorsGuidance.java b/Mage.Sets/src/mage/cards/m/MentorsGuidance.java index 47def4b42a5..e53de32e14a 100644 --- a/Mage.Sets/src/mage/cards/m/MentorsGuidance.java +++ b/Mage.Sets/src/mage/cards/m/MentorsGuidance.java @@ -41,10 +41,9 @@ public final class MentorsGuidance extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{U}"); // When you cast this spell, copy it if you control a planeswalker, Cleric, Druid, Shaman, Warlock, or Wizard. - new CastSourceTriggeredAbility(new ConditionalOneShotEffect( + this.addAbility(new CastSourceTriggeredAbility(new ConditionalOneShotEffect( new CopySourceSpellEffect(), condition, "copy it if you control " + - "a planeswalker, Cleric, Druid, Shaman, Warlock, or Wizard" - )); + "a planeswalker, Cleric, Druid, Shaman, Warlock, or Wizard"))); // Scry 1, then draw a card. this.getSpellAbility().addEffect(new ScryEffect(1, false));