From 0102a5c7365879282553af69269ae3318b369953 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 1 Apr 2023 23:53:47 +0400 Subject: [PATCH] Merge fix --- Mage.Sets/src/mage/cards/f/FaerieMastermind.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Mage.Sets/src/mage/cards/f/FaerieMastermind.java b/Mage.Sets/src/mage/cards/f/FaerieMastermind.java index 95c259fed1..75d3c9ba68 100644 --- a/Mage.Sets/src/mage/cards/f/FaerieMastermind.java +++ b/Mage.Sets/src/mage/cards/f/FaerieMastermind.java @@ -1,22 +1,18 @@ package mage.cards.f; import mage.MageInt; -import mage.abilities.common.DrawSecondCardTriggeredAbility; +import mage.abilities.common.DrawCardTriggeredAbility; import mage.abilities.common.SimpleActivatedAbility; -import mage.abilities.costs.mana.ManaCostImpl; import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.effects.common.DrawCardAllEffect; import mage.abilities.effects.common.DrawCardSourceControllerEffect; -import mage.abilities.effects.common.ReturnSourceFromGraveyardToHandEffect; import mage.abilities.keyword.FlashAbility; import mage.abilities.keyword.FlyingAbility; -import mage.cards.Card; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.constants.SubType; import mage.constants.TargetController; -import mage.constants.Zone; import java.util.UUID; @@ -35,8 +31,8 @@ public class FaerieMastermind extends CardImpl { this.addAbility(FlyingAbility.getInstance()); //Whenever an opponent draws their second card each turn, you draw a card. - this.addAbility(new DrawSecondCardTriggeredAbility( - new DrawCardSourceControllerEffect(1).setText("you draw a card"), false, TargetController.OPPONENT + this.addAbility(new DrawCardTriggeredAbility( + new DrawCardSourceControllerEffect(1).setText("you draw a card"), false, TargetController.OPPONENT, 2 )); //{3}{U}: Each player draws a card.