Fixed Fireball in accordance with recent changes in TargetImpl.

This commit is contained in:
magenoxx 2011-10-12 15:46:36 +04:00
parent 238f26ee94
commit 356e4a63a2

View file

@ -51,7 +51,7 @@ public class Fireball extends CardImpl<Fireball> {
super(ownerId, 136, "Fireball", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{X}{R}");
this.expansionSetCode = "M10";
this.color.setRed(true);
this.getSpellAbility().addTarget(new TargetCreatureOrPlayer(0, 0));
this.getSpellAbility().addTarget(new TargetCreatureOrPlayer(0, Integer.MAX_VALUE));
this.getSpellAbility().addEffect(new FireballEffect());
}