From 2d4c9c8bbecd8ebc60b730bd698ffb88da5c956e Mon Sep 17 00:00:00 2001 From: ciaccona007 Date: Sun, 9 Jul 2017 01:06:05 -0400 Subject: [PATCH] Fix text in HOU gods --- Mage.Sets/src/mage/cards/t/TheLocustGod.java | 4 ++-- Mage.Sets/src/mage/cards/t/TheScarabGod.java | 4 ++-- Mage.Sets/src/mage/cards/t/TheScorpionGod.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TheLocustGod.java b/Mage.Sets/src/mage/cards/t/TheLocustGod.java index fc8f375fb8a..751d1bb5de8 100644 --- a/Mage.Sets/src/mage/cards/t/TheLocustGod.java +++ b/Mage.Sets/src/mage/cards/t/TheLocustGod.java @@ -91,7 +91,7 @@ public class TheLocustGod extends CardImpl { class TheLocustGodEffect extends OneShotEffect { - private static final String effectText = "return it to its owner's hand at the beginning of the next end step."; + private static final String effectText = "return it to its owner's hand at the beginning of the next end step"; TheLocustGodEffect() { super(Outcome.Benefit); @@ -106,7 +106,7 @@ class TheLocustGodEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { // Create delayed triggered ability Effect effect = new ReturnToHandSourceEffect(false, true); - effect.setText(staticText); + effect.setText("return {this} to its owner's hand"); DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect); game.addDelayedTriggeredAbility(delayedAbility, source); return true; diff --git a/Mage.Sets/src/mage/cards/t/TheScarabGod.java b/Mage.Sets/src/mage/cards/t/TheScarabGod.java index f4d646dbf0e..7a4b27514c6 100644 --- a/Mage.Sets/src/mage/cards/t/TheScarabGod.java +++ b/Mage.Sets/src/mage/cards/t/TheScarabGod.java @@ -174,7 +174,7 @@ class TheScarabGodEffect2 extends OneShotEffect { class TheScarabGodEffect3 extends OneShotEffect { - private static final String effectText = "return it to its owner's hand at the beginning of the next upkeep."; + private static final String effectText = "return it to its owner's hand at the beginning of the next end step"; TheScarabGodEffect3() { super(Outcome.Benefit); @@ -189,7 +189,7 @@ class TheScarabGodEffect3 extends OneShotEffect { public boolean apply(Game game, Ability source) { // Create delayed triggered ability Effect effect = new ReturnToHandSourceEffect(false, true); - effect.setText(staticText); + effect.setText("return {this} to its owner's hand"); DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect); game.addDelayedTriggeredAbility(delayedAbility, source); return true; diff --git a/Mage.Sets/src/mage/cards/t/TheScorpionGod.java b/Mage.Sets/src/mage/cards/t/TheScorpionGod.java index 5cf2d84fe04..032b78daa77 100644 --- a/Mage.Sets/src/mage/cards/t/TheScorpionGod.java +++ b/Mage.Sets/src/mage/cards/t/TheScorpionGod.java @@ -141,7 +141,7 @@ class TheScorpionGodTriggeredAbility extends TriggeredAbilityImpl { class TheScorpionGodEffect extends OneShotEffect { - private static final String effectText = "return it to its owner's hand"; + private static final String effectText = "return it to its owner's hand at the beginning of the next end step"; TheScorpionGodEffect() { super(Outcome.Benefit); @@ -156,7 +156,7 @@ class TheScorpionGodEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { // Create delayed triggered ability Effect effect = new ReturnToHandSourceEffect(false, true); - effect.setText(staticText); + effect.setText("return {this} to its owner's hand"); DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect); game.addDelayedTriggeredAbility(delayedAbility, source); return true;