(String ManaProduced)
| 321 | } |
| 322 | //Convert to Mana String |
| 323 | public static String toManaString(String ManaProduced) { |
| 324 | if ("mana".equals(ManaProduced) || ManaProduced.contains("Combo")|| ManaProduced.contains("Any")) |
| 325 | return "mana";//fix manamorphose stack description and probably others.. |
| 326 | return "{"+TextUtil.fastReplace(ManaProduced," ","}{")+"}"; |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * Converts a card name to a sortable name. |
no test coverage detected