update description

This commit is contained in:
Anthony Calosa
2020-09-22 07:14:33 +08:00
parent fd466bcf05
commit 368036f890
2 changed files with 4 additions and 3 deletions

View File

@@ -302,7 +302,8 @@ public class TextUtil {
}
//Convert to Mana String
public static String toManaString(String ManaProduced){
String convertedMana = "{"+TextUtil.fastReplace(ManaProduced," ","}{")+"}";
return TextUtil.fastReplace(convertedMana,"{Combo}{Any}", "X mana in any combination"); //Fix manamorphose stack descrition, todo: better/alternative method..
if (ManaProduced == "mana"|| ManaProduced.contains("Combo")|| ManaProduced.contains("Any"))
return "mana";//fix manamorphose stack description and probably others..
return "{"+TextUtil.fastReplace(ManaProduced," ","}{")+"}";
}
}