From bcf09b3cd068f2dfbf9f9547cd78304bed24723e Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 24 Jun 2014 11:43:03 +0200 Subject: [PATCH] Changes for tooltip text an game log messages. --- Mage.Sets/src/mage/sets/conflux/WallOfReverence.java | 2 +- .../src/mage/sets/journeyintonyx/AthreosGodOfPassage.java | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/conflux/WallOfReverence.java b/Mage.Sets/src/mage/sets/conflux/WallOfReverence.java index e90109bccc9..d74cae22cb0 100644 --- a/Mage.Sets/src/mage/sets/conflux/WallOfReverence.java +++ b/Mage.Sets/src/mage/sets/conflux/WallOfReverence.java @@ -79,7 +79,7 @@ public class WallOfReverence extends CardImpl { class WallOfReverenceTriggeredEffect extends OneShotEffect { WallOfReverenceTriggeredEffect() { super(Outcome.GainLife); - staticText = "you may gain life equal to the power of target creature you control"; + staticText = "gain life equal to the power of target creature you control"; } WallOfReverenceTriggeredEffect(WallOfReverenceTriggeredEffect effect) { diff --git a/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java b/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java index 191cb9ff66b..ca752e3fb3a 100644 --- a/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java +++ b/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java @@ -129,8 +129,9 @@ class AthreosGodOfPassageReturnEffect extends OneShotEffect { Player opponent = game.getPlayer(source.getFirstTarget()); boolean paid = false; if (opponent != null) { - if (opponent.chooseUse(outcome, new StringBuilder("Pay 3 live to prevent that ").append(creature.getName()).append(" returns to ").append(controller.getName()).append("'s hand?").toString(), game)) { - Cost cost = new PayLifeCost(3); + Cost cost = new PayLifeCost(3); + if (cost.canPay(source.getSourceId(), opponent.getId(), game) + && opponent.chooseUse(outcome, new StringBuilder("Pay 3 live to prevent that ").append(creature.getLogName()).append(" returns to ").append(controller.getName()).append("'s hand?").toString(), game)) { if (cost.pay(source, game, source.getSourceId(), opponent.getId(), false)) { paid = true; }