- Quick fix for unless costs of zero mana.

This commit is contained in:
Sloth
2012-05-17 15:51:23 +00:00
parent bf425c25b2
commit a4d6494891

View File

@@ -380,6 +380,14 @@ public final class GameActionUtil {
}
return;
}
if (manaCost.equals("0")) {
if (showYesNoDialog(hostCard, "Do you want to pay 0?")) {
paid.execute();
} else {
unpaid.execute();
}
return;
}
// temporarily disable the Resolve flag, so the user can payMana for the
// resolving Ability
final boolean bResolving = AllZone.getStack().getResolving();