From c1719d06d1e35745fc14c7e7e6f81490bb4a256e Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 27 Jan 2021 09:20:38 -0500 Subject: [PATCH] [KHM] fixed Old-Growth Troll rollback error (fixes #7453) --- Mage.Sets/src/mage/cards/o/OldGrowthTroll.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/o/OldGrowthTroll.java b/Mage.Sets/src/mage/cards/o/OldGrowthTroll.java index fd693403062..abc36f889a3 100644 --- a/Mage.Sets/src/mage/cards/o/OldGrowthTroll.java +++ b/Mage.Sets/src/mage/cards/o/OldGrowthTroll.java @@ -177,7 +177,7 @@ class OldGrowthTrollContinuousEffect extends ContinuousEffectImpl { troll.addAbility(new EnchantAbility(auraTarget.getTargetName())); // add the activated ability - troll.addAbility(makeAbility()); + troll.addAbility(makeAbility(), source.getSourceId(), game); } return true; } @@ -201,11 +201,11 @@ class OldGrowthTrollContinuousEffect extends ContinuousEffectImpl { Cost cost = new SacrificeSourceCost(); cost.setText("sacrifice this land"); activatedAbility.addCost(cost); - Ability ability=new SimpleStaticAbility(new GainAbilityAttachedEffect(new SimpleManaAbility( - Zone.BATTLEFIELD, Mana.GreenMana(2), new TapSourceCost()),AttachmentType.AURA + Ability ability = new SimpleStaticAbility(new GainAbilityAttachedEffect(new SimpleManaAbility( + Zone.BATTLEFIELD, Mana.GreenMana(2), new TapSourceCost()), AttachmentType.AURA ).setText("enchanted Forest has \"{T}: Add {G}{G}\"")); ability.addEffect(new GainAbilityAttachedEffect( - activatedAbility,AttachmentType.AURA + activatedAbility, AttachmentType.AURA ).setText("and \"{1}, {T}, Sacrifice this land: Create a 4/4 green Troll Warrior creature token with trample.\"")); return ability; }