mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Revert "Condense mana strings shown to player. Fix #8945."
(condenseManaCostString does not respect mana symbol order)
This reverts commit 08fd93f073.
This commit is contained in:
parent
08fd93f073
commit
5c54eccffd
1 changed files with 2 additions and 2 deletions
|
|
@ -442,9 +442,9 @@ public final class ManaUtil {
|
|||
}
|
||||
}
|
||||
if (baseObject != null) {
|
||||
return ManaUtil.condenseManaCostString(unpaid.getText()) + "<div style='font-size:11pt'>" + baseObject.getLogName() + "</div>";
|
||||
return unpaid.getText() + "<div style='font-size:11pt'>" + baseObject.getLogName() + "</div>";
|
||||
} else {
|
||||
return ManaUtil.condenseManaCostString(unpaid.getText());
|
||||
return unpaid.getText();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue