Strip colors from mod name as well (#8224)

This commit is contained in:
MEEPofFaith
2023-02-01 11:45:56 -08:00
committed by GitHub
parent 395dc99595
commit 12f747ae1d

View File

@@ -1173,6 +1173,7 @@ public class Mods implements Loadable{
//removes all colors
public void cleanup(){
if(name != null) name = Strings.stripColors(name);
if(displayName != null) displayName = Strings.stripColors(displayName);
if(author != null) author = Strings.stripColors(author);
if(description != null) description = Strings.stripColors(description);