From 783a828cded851d19689280a04978c1bf7f6c19f Mon Sep 17 00:00:00 2001 From: drmDev Date: Sat, 5 Mar 2016 06:10:54 -0500 Subject: [PATCH] User requested condense trigger ability text for Tuktuk Scrapper --- Mage.Sets/src/mage/sets/worldwake/TuktukScrapper.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/worldwake/TuktukScrapper.java b/Mage.Sets/src/mage/sets/worldwake/TuktukScrapper.java index 2a22757c2e..e5e90bb5f1 100644 --- a/Mage.Sets/src/mage/sets/worldwake/TuktukScrapper.java +++ b/Mage.Sets/src/mage/sets/worldwake/TuktukScrapper.java @@ -113,7 +113,12 @@ class TuktukScrapperTriggeredAbility extends TriggeredAbilityImpl { @Override public String getRule() { - return "Whenever {this} or another Ally enters the battlefield under your control, you may destroy target artifact. If that artifact is put into a graveyard this way, {this} deals damage to that artifact's controller equal to the number of Allies you control."; + + // originally returned fullText, user reported that because the trigger text is so lengthy, they cannot click Yes/No buttons + //String fullText = "Whenever {this} or another Ally enters the battlefield under your control, you may destroy target artifact. If that artifact is put into a graveyard this way, {this} deals damage to that artifact's controller equal to the number of Allies you control."; + String condensedText = "Whenever {this} or another Ally you enters the battlefield under your control, you may destroy target artifact. If you do, {this} deals damage to that controller equal to the number of Allies you control."; + + return condensedText; } }