little asking text change

This commit is contained in:
Loki 2011-09-16 11:30:01 +03:00
parent 925e879fb0
commit b9fce8eb8e

View file

@ -165,7 +165,12 @@ public abstract class AbilityImpl<T extends AbilityImpl<T>> implements Ability {
}
for (Cost cost : optionalCosts) {
if (cost instanceof ManaCost) {
if (cost instanceof KickerManaCost) {
cost.clearPaid();
if (game.getPlayer(this.controllerId).chooseUse(Outcome.Benefit, "Pay " + cost.getText() + "?", game)) {
manaCostsToPay.add((ManaCost) cost);
}
} else if (cost instanceof ManaCost) {
cost.clearPaid();
if (game.getPlayer(this.controllerId).chooseUse(Outcome.Benefit, "Pay optional cost " + cost.getText() + "?", game)) {
manaCostsToPay.add((ManaCost) cost);