mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Condense mana strings shown to player. Fix #8945.
This commit is contained in:
parent
1e4c64aacd
commit
08fd93f073
1 changed files with 2 additions and 2 deletions
|
@ -442,9 +442,9 @@ public final class ManaUtil {
|
|||
}
|
||||
}
|
||||
if (baseObject != null) {
|
||||
return unpaid.getText() + "<div style='font-size:11pt'>" + baseObject.getLogName() + "</div>";
|
||||
return ManaUtil.condenseManaCostString(unpaid.getText()) + "<div style='font-size:11pt'>" + baseObject.getLogName() + "</div>";
|
||||
} else {
|
||||
return unpaid.getText();
|
||||
return ManaUtil.condenseManaCostString(unpaid.getText());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue