Fixed a problem that hybrid mana symbols were not shown (fixes #2962).

This commit is contained in:
LevelX2 2017-03-12 16:59:54 +01:00
parent 962f05bbcb
commit ae4125209b

View file

@ -271,7 +271,7 @@ public final class ManaSymbols {
for (String s : manaCost) { for (String s : manaCost) {
sb.append(s); sb.append(s);
} }
return sb.toString().replace("{", "").replace("}", " ").trim(); return sb.toString().replace("/", "").replace("{", "").replace("}", " ").trim();
} }
public enum Type { public enum Type {