* Scale Blessing - Fixed that the second effect was not applied.

This commit is contained in:
LevelX2 2015-03-20 10:26:29 +01:00
parent c991a4eaee
commit 86a3849e13

View file

@ -58,6 +58,7 @@ public class ScaleBlessing extends CardImpl {
Effect effect = new BolsterEffect(1); Effect effect = new BolsterEffect(1);
effect.setText("Bolster 1"); effect.setText("Bolster 1");
this.getSpellAbility().addEffect(effect); this.getSpellAbility().addEffect(effect);
this.getSpellAbility().addEffect(new ScaleBlessingEffect());
} }