null check in parsecolors

This commit is contained in:
destro174
2022-02-19 16:58:22 +01:00
parent 8fd784bba1
commit 1e0bf8b5ae
@@ -49,6 +49,7 @@ public class Utility {
}
public static String parseColors(String message) {
if (message == null) return "";
// split string in sections and check those vs looping hashmap?:/
// think this is better, but will check numbers on this
for (String key : colors.keySet()) {