diff --git a/Mage.Sets/src/mage/sets/newphyrexia/KarnLiberated.java b/Mage.Sets/src/mage/sets/newphyrexia/KarnLiberated.java index c0dd0ce06d..b6c47be173 100644 --- a/Mage.Sets/src/mage/sets/newphyrexia/KarnLiberated.java +++ b/Mage.Sets/src/mage/sets/newphyrexia/KarnLiberated.java @@ -100,7 +100,7 @@ class KarnLiberatedEffect extends OneShotEffect<KarnLiberatedEffect> { public KarnLiberatedEffect(UUID exileId) { super(Outcome.ExtraTurn); this.exileId = exileId; - this.staticText = "Restart the game, leaving in exile all non-Aura permanent cards exiled with {this}. Then put those cards onto the battlefield under your control."; + this.staticText = "Restart the game, leaving in exile all non-Aura permanent cards exiled with {this}. Then put those cards onto the battlefield under your control"; } public KarnLiberatedEffect(final KarnLiberatedEffect effect) { diff --git a/Mage.Sets/src/mage/sets/shardsofalara/RelicOfProgenitus.java b/Mage.Sets/src/mage/sets/shardsofalara/RelicOfProgenitus.java index 5a5d9edb0c..dd8c8bfd9e 100644 --- a/Mage.Sets/src/mage/sets/shardsofalara/RelicOfProgenitus.java +++ b/Mage.Sets/src/mage/sets/shardsofalara/RelicOfProgenitus.java @@ -81,7 +81,7 @@ class RelicOfProgenitusEffect extends OneShotEffect<RelicOfProgenitusEffect> { public RelicOfProgenitusEffect() { super(Outcome.Exile); - this.staticText = "Target player exiles a card from his or her graveyard."; + this.staticText = "Target player exiles a card from his or her graveyard"; } public RelicOfProgenitusEffect(final RelicOfProgenitusEffect effect) { @@ -116,7 +116,7 @@ class RelicOfProgenitusEffect2 extends OneShotEffect<RelicOfProgenitusEffect2> { public RelicOfProgenitusEffect2() { super(Constants.Outcome.Detriment); - staticText = "Exile all cards from all graveyards."; + staticText = "Exile all cards from all graveyards"; } public RelicOfProgenitusEffect2(final RelicOfProgenitusEffect2 effect) { diff --git a/Mage/src/mage/abilities/effects/common/PreventCombatDamageFromSourceEffect.java b/Mage/src/mage/abilities/effects/common/PreventCombatDamageFromSourceEffect.java index 585a083648..2c9e7e66ff 100644 --- a/Mage/src/mage/abilities/effects/common/PreventCombatDamageFromSourceEffect.java +++ b/Mage/src/mage/abilities/effects/common/PreventCombatDamageFromSourceEffect.java @@ -43,7 +43,7 @@ public class PreventCombatDamageFromSourceEffect extends PreventionEffectImpl<Pr public PreventCombatDamageFromSourceEffect(Duration duration) { super(duration); - staticText = "Prevent all combat damage that would be dealt by {this} " + duration.toString(); + staticText = "Prevent all combat damage that would be dealt by {this}" + duration.toString(); } public PreventCombatDamageFromSourceEffect(final PreventCombatDamageFromSourceEffect effect) { diff --git a/Mage/src/mage/abilities/effects/common/PreventCombatDamageSourceEffect.java b/Mage/src/mage/abilities/effects/common/PreventCombatDamageSourceEffect.java index 317cadf0c4..93d23c092b 100644 --- a/Mage/src/mage/abilities/effects/common/PreventCombatDamageSourceEffect.java +++ b/Mage/src/mage/abilities/effects/common/PreventCombatDamageSourceEffect.java @@ -43,7 +43,7 @@ public class PreventCombatDamageSourceEffect extends PreventionEffectImpl<Preven public PreventCombatDamageSourceEffect(Duration duration) { super(duration); - staticText = "Prevent all combat damage that would be dealt to {this} " + duration.toString(); + staticText = "Prevent all combat damage that would be dealt to {this}" + duration.toString(); } public PreventCombatDamageSourceEffect(final PreventCombatDamageSourceEffect effect) {