From 43f79908b83d67e9b134a69df0af1ce6189dc744 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 5 Jun 2015 13:39:42 +0200 Subject: [PATCH] Fixed a problem with tooltip text generation. --- .../abilities/effects/common/PreventDamageBySourceEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/effects/common/PreventDamageBySourceEffect.java b/Mage/src/mage/abilities/effects/common/PreventDamageBySourceEffect.java index 9845cd5824e..6090fcc2371 100644 --- a/Mage/src/mage/abilities/effects/common/PreventDamageBySourceEffect.java +++ b/Mage/src/mage/abilities/effects/common/PreventDamageBySourceEffect.java @@ -58,7 +58,7 @@ public class PreventDamageBySourceEffect extends PreventionEffectImpl { filterObject.setMessage(filterObject.getMessage() + " source"); } this.target = new TargetSource(filterObject); - staticText = "Prevent all damage " + filterObject.getMessage() + " source of your choice would deal this turn"; + staticText = "Prevent all damage " + filterObject.getMessage() + " of your choice would deal this turn"; } public PreventDamageBySourceEffect(final PreventDamageBySourceEffect effect) {