mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed a problem that hybrid mana symbols were not shown (fixes #2962).
This commit is contained in:
parent
962f05bbcb
commit
ae4125209b
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ public final class ManaSymbols {
|
|||
for (String s : manaCost) {
|
||||
sb.append(s);
|
||||
}
|
||||
return sb.toString().replace("{", "").replace("}", " ").trim();
|
||||
return sb.toString().replace("/", "").replace("{", "").replace("}", " ").trim();
|
||||
}
|
||||
|
||||
public enum Type {
|
||||
|
|
Loading…
Reference in a new issue