3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 05:20:07 +01:00

SPIGOT-6001: Hex colors format differently to traditional colours

Dieser Commit ist enthalten in:
md_5 2020-07-19 08:44:42 +10:00
Ursprung 2361cb8a81
Commit 6b95d595cf
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: E8E901AC7C617C11

Datei anzeigen

@ -87,7 +87,7 @@ public final class CraftChatMessage {
hex.append(c);
if (hex.length() == 7) {
modifier = modifier.setColor(ChatHexColor.a(hex.toString()));
modifier = RESET.setColor(ChatHexColor.a(hex.toString()));
hex = null;
}
} else if (format.isFormat() && format != EnumChatFormat.RESET) {