mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
little asking text change
This commit is contained in:
parent
925e879fb0
commit
b9fce8eb8e
1 changed files with 6 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue