From d3033cece3a8ef48d5dd4f82e02fbc02bd0dae6c Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Fri, 5 Nov 2021 23:19:00 +0400 Subject: [PATCH] Merge fix --- Mage.Sets/src/mage/cards/f/ForebodingStatue.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/f/ForebodingStatue.java b/Mage.Sets/src/mage/cards/f/ForebodingStatue.java index a4608ae98e1..1bd52d1d33c 100644 --- a/Mage.Sets/src/mage/cards/f/ForebodingStatue.java +++ b/Mage.Sets/src/mage/cards/f/ForebodingStatue.java @@ -30,7 +30,6 @@ public final class ForebodingStatue extends CardImpl { this.subtype.add(SubType.CONSTRUCT); this.power = new MageInt(1); this.toughness = new MageInt(2); - this.transformable = true; this.secondSideCardClazz = mage.cards.f.ForsakenThresher.class; // {T}: Add one mana of any color. Put an omen counter on Foreboding Statue. @@ -44,7 +43,7 @@ public final class ForebodingStatue extends CardImpl { Zone.BATTLEFIELD, new UntapSourceEffect().setText("untap it,"), TargetController.YOU, new SourceHasCounterCondition(CounterType.OMEN, 3), false ).setTriggerPhrase("At the beginning of your end step, if there are three or more omen counters on {this}, "); - ability.addEffect(new TransformSourceEffect(true, true).setText("then transform it")); + ability.addEffect(new TransformSourceEffect().setText("then transform it")); this.addAbility(ability); }