Add switch for dealing with ChatColor.NONE

In-game chat uses ChatColor.NONE for handling reset of text.
This commit is contained in:
DoctorMacc 2020-03-23 15:13:45 -04:00 committed by GitHub
parent 8ce0916827
commit a821312f7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,6 +154,7 @@ public class MessageUtils {
base += "f"; base += "f";
break; break;
case RESET: case RESET:
case NONE:
base += "r"; base += "r";
break; break;
default: default: