From 1eb668b608af9dfb78ef878d294330ebaf4e6003 Mon Sep 17 00:00:00 2001 From: Ingmar Goudt Date: Sun, 13 Jan 2019 23:12:14 +0100 Subject: [PATCH] fix tooltip for Gate Colossus, update the Riot ability choose popup --- Mage.Sets/src/mage/cards/g/GateColossus.java | 2 +- Mage/src/main/java/mage/abilities/keyword/RiotAbility.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/g/GateColossus.java b/Mage.Sets/src/mage/cards/g/GateColossus.java index 161b449d1dc..0855be3d71c 100644 --- a/Mage.Sets/src/mage/cards/g/GateColossus.java +++ b/Mage.Sets/src/mage/cards/g/GateColossus.java @@ -65,7 +65,7 @@ public final class GateColossus extends CardImpl { class GateColossusCostReductionEffect extends CostModificationEffectImpl { - static final FilterControlledPermanent filter = new FilterControlledPermanent(); + static final FilterControlledPermanent filter = new FilterControlledPermanent("a Gate"); static { filter.add(new SubtypePredicate(SubType.GATE)); diff --git a/Mage/src/main/java/mage/abilities/keyword/RiotAbility.java b/Mage/src/main/java/mage/abilities/keyword/RiotAbility.java index 47ca943dcb7..e3e7ccb4590 100644 --- a/Mage/src/main/java/mage/abilities/keyword/RiotAbility.java +++ b/Mage/src/main/java/mage/abilities/keyword/RiotAbility.java @@ -71,7 +71,7 @@ class RiotReplacementEffect extends ReplacementEffectImpl { Permanent creature = ((EntersTheBattlefieldEvent) event).getTarget(); Player controller = game.getPlayer(source.getControllerId()); if (creature != null && controller != null) { - if (controller.chooseUse(outcome, "Have " + creature.getLogName() + " enter the battlefield with a +1/+1 counter on it? (If you don't it has haste)", source, game)) { + if (controller.chooseUse(outcome, "Have " + creature.getLogName() + " enter the battlefield with a +1/+1 counter on it or with haste?","", "Riot", "Haste", source, game)) { if (!game.isSimulation()) { game.informPlayers(controller.getLogName() + " choose to put a +1/+1 counter on " + creature.getName()); }