mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
Fixed incorrect value for ChatColor.BLACK (was 1, should be 0)
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
b59a919a08
commit
d4b3279707
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ public enum ChatColor {
|
||||||
/**
|
/**
|
||||||
* Represents black
|
* Represents black
|
||||||
*/
|
*/
|
||||||
BLACK('0', 0x01),
|
BLACK('0', 0x00),
|
||||||
/**
|
/**
|
||||||
* Represents dark blue
|
* Represents dark blue
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue