From 8b66eff239627d9d6569498118fa54ea725dca4d Mon Sep 17 00:00:00 2001 From: Simown Date: Sat, 1 Oct 2016 12:25:38 +0100 Subject: [PATCH] Fixed typo on Aerial Volley --- Mage.Sets/src/mage/sets/magicorigins/AerialVolley.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/magicorigins/AerialVolley.java b/Mage.Sets/src/mage/sets/magicorigins/AerialVolley.java index 5b16e57f13..c7af1b672f 100644 --- a/Mage.Sets/src/mage/sets/magicorigins/AerialVolley.java +++ b/Mage.Sets/src/mage/sets/magicorigins/AerialVolley.java @@ -56,7 +56,7 @@ public class AerialVolley extends CardImpl { // Aerial Volley deals 3 damage divided as you choose among one, two, or three target creatures with flying. Effect effect = new DamageMultiEffect(3); - effect.setText("A{this} deals 3 damage divided as you choose among one, two, or three target creatures with flying"); + effect.setText("{this} deals 3 damage divided as you choose among one, two, or three target creatures with flying"); this.getSpellAbility().addEffect(effect); this.getSpellAbility().addTarget(new TargetCreaturePermanentAmount(3, filter));