mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
HumanPlay: fixed Text for CostAddMana
This commit is contained in:
@@ -334,7 +334,10 @@ public class HumanPlay {
|
|||||||
part.payAsDecided(p, pd, sourceAbility);
|
part.payAsDecided(p, pd, sourceAbility);
|
||||||
}
|
}
|
||||||
else if (part instanceof CostAddMana) {
|
else if (part instanceof CostAddMana) {
|
||||||
if (!p.getController().confirmPayment(part, "Do you want to add " + part.toString() + " to your mana pool?" + orString)) {
|
String desc = part.toString();
|
||||||
|
desc = desc.substring(0, 1).toLowerCase() + desc.substring(1);
|
||||||
|
|
||||||
|
if (!p.getController().confirmPayment(part, "Do you want to "+ desc + "?" + orString)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
PaymentDecision pd = part.accept(hcd);
|
PaymentDecision pd = part.accept(hcd);
|
||||||
|
|||||||
Reference in New Issue
Block a user