Fixed typo on Aerial Volley

This commit is contained in:
Simown 2016-10-01 12:25:38 +01:00
parent 98cc5bacdd
commit 8b66eff239

View file

@ -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. // Aerial Volley deals 3 damage divided as you choose among one, two, or three target creatures with flying.
Effect effect = new DamageMultiEffect(3); 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().addEffect(effect);
this.getSpellAbility().addTarget(new TargetCreaturePermanentAmount(3, filter)); this.getSpellAbility().addTarget(new TargetCreaturePermanentAmount(3, filter));