From 5a705c5e14d88989f60b9b083c32b0bfde733dcb Mon Sep 17 00:00:00 2001 From: arcox <10953229+arcox@users.noreply.github.com> Date: Mon, 30 Nov 2020 21:28:29 -0500 Subject: [PATCH] Fix line break tags in effect text --- Mage.Sets/src/mage/cards/a/AgonyWarp.java | 2 +- Mage.Sets/src/mage/cards/a/AzoriusPloy.java | 2 +- Mage.Sets/src/mage/cards/m/MartialGlory.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AgonyWarp.java b/Mage.Sets/src/mage/cards/a/AgonyWarp.java index 2624507a6f8..674bf50f5fb 100644 --- a/Mage.Sets/src/mage/cards/a/AgonyWarp.java +++ b/Mage.Sets/src/mage/cards/a/AgonyWarp.java @@ -32,7 +32,7 @@ public final class AgonyWarp extends CardImpl { // Target creature gets -0/-3 until end of turn. Effect effect2 = new BoostTargetEffect(-0,-3, Duration.EndOfTurn); - effect2.setText("

Target creature gets -0/-3 until end of turn"); + effect2.setText("

Target creature gets -0/-3 until end of turn"); effect2.setTargetPointer(SecondTargetPointer.getInstance()); this.getSpellAbility().addEffect(effect2); target = new TargetCreaturePermanent(new FilterCreaturePermanent("second creature (can be the same as the first)")); diff --git a/Mage.Sets/src/mage/cards/a/AzoriusPloy.java b/Mage.Sets/src/mage/cards/a/AzoriusPloy.java index 0a2586584a1..9b066888ae4 100644 --- a/Mage.Sets/src/mage/cards/a/AzoriusPloy.java +++ b/Mage.Sets/src/mage/cards/a/AzoriusPloy.java @@ -33,7 +33,7 @@ public final class AzoriusPloy extends CardImpl { // Prevent all combat damage that would be dealt to target creature this turn. Effect effect2 = new PreventDamageToTargetEffect(Duration.EndOfTurn, true); - effect2.setText("

Prevent all combat damage that would be dealt to target creature this turn."); + effect2.setText("

Prevent all combat damage that would be dealt to target creature this turn."); effect2.setTargetPointer(SecondTargetPointer.getInstance()); this.getSpellAbility().addEffect(effect2); target = new TargetCreaturePermanent(new FilterCreaturePermanent("second creature (can be the same as the first)")); diff --git a/Mage.Sets/src/mage/cards/m/MartialGlory.java b/Mage.Sets/src/mage/cards/m/MartialGlory.java index 99862d219d0..adf5ac0bba8 100644 --- a/Mage.Sets/src/mage/cards/m/MartialGlory.java +++ b/Mage.Sets/src/mage/cards/m/MartialGlory.java @@ -32,7 +32,7 @@ public final class MartialGlory extends CardImpl { // Target creature gets +0/+3 until end of turn. Effect effect2 = new BoostTargetEffect(0,3, Duration.EndOfTurn); - effect2.setText("

Target creature gets +0/+3 until end of turn"); + effect2.setText("

Target creature gets +0/+3 until end of turn"); effect2.setTargetPointer(SecondTargetPointer.getInstance()); target = new TargetCreaturePermanent(new FilterCreaturePermanent("second creature (can be the same as the first)")); this.getSpellAbility().addEffect(effect2);