mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 21:01:02 -05:00
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:
commit
160f8a7ce6
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ public enum ChatColor {
|
|||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
return ChatColor.NONE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue