From 40a2f9490d8340207c4c345168a3ab91889a8f0d Mon Sep 17 00:00:00 2001 From: jeffwadsworth Date: Fri, 27 Aug 2021 15:16:59 -0500 Subject: [PATCH] - Fixed #8162 --- Mage.Sets/src/mage/cards/w/WakingTheTrolls.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/w/WakingTheTrolls.java b/Mage.Sets/src/mage/cards/w/WakingTheTrolls.java index ff1300bcee5..44cd1ecea7f 100644 --- a/Mage.Sets/src/mage/cards/w/WakingTheTrolls.java +++ b/Mage.Sets/src/mage/cards/w/WakingTheTrolls.java @@ -34,7 +34,7 @@ public final class WakingTheTrolls extends CardImpl { this.subtype.add(SubType.SAGA); - SagaAbility sagaAbility = new SagaAbility(this, SagaChapter.CHAPTER_I); + SagaAbility sagaAbility = new SagaAbility(this, SagaChapter.CHAPTER_III); // I — Destroy target land. sagaAbility.addChapterEffect( @@ -73,8 +73,8 @@ class WakingTheTrollsEffect extends OneShotEffect { WakingTheTrollsEffect() { super(Outcome.Benefit); - staticText = "choose target opponent. If they control fewer lands than you, " + - "create a number of 4/4 green Troll Warrior creature tokens with trample equal to the difference"; + staticText = "choose target opponent. If they control fewer lands than you, " + + "create a number of 4/4 green Troll Warrior creature tokens with trample equal to the difference"; } private WakingTheTrollsEffect(final WakingTheTrollsEffect effect) {