Merge pull request #546 from bundabrg/fix/null-color

When a color can't be translated set to NONE instead of null
This commit is contained in:
Steven Smith 2020-06-01 09:08:01 -07:00 committed by GitHub
commit 160f8a7ce6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ public enum ChatColor {
}
}
return null;
return ChatColor.NONE;
}
@Override