From 31a99db328ffb8dc2f6c14d8921c69f63e0ac915 Mon Sep 17 00:00:00 2001 From: BillyGalbreath Date: Tue, 2 Oct 2018 09:21:12 -0500 Subject: [PATCH] Dont strip explicit leading color codes in chat components (#1512) --- ...cit-leading-color-codes-in-chat-comp.patch | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Spigot-Server-Patches/0384-Dont-strip-explicit-leading-color-codes-in-chat-comp.patch diff --git a/Spigot-Server-Patches/0384-Dont-strip-explicit-leading-color-codes-in-chat-comp.patch b/Spigot-Server-Patches/0384-Dont-strip-explicit-leading-color-codes-in-chat-comp.patch new file mode 100644 index 000000000..753db4008 --- /dev/null +++ b/Spigot-Server-Patches/0384-Dont-strip-explicit-leading-color-codes-in-chat-comp.patch @@ -0,0 +1,22 @@ +From cc921fd1befdb375e09e13562d342b0e537616b5 Mon Sep 17 00:00:00 2001 +From: BillyGalbreath +Date: Sun, 30 Sep 2018 08:40:14 -0500 +Subject: [PATCH] Dont strip explicit leading color codes in chat components + + +diff --git a/src/main/java/org/bukkit/craftbukkit/util/CraftChatMessage.java b/src/main/java/org/bukkit/craftbukkit/util/CraftChatMessage.java +index 5e20a9a61..df627d955 100644 +--- a/src/main/java/org/bukkit/craftbukkit/util/CraftChatMessage.java ++++ b/src/main/java/org/bukkit/craftbukkit/util/CraftChatMessage.java +@@ -192,7 +192,7 @@ public final class CraftChatMessage { + } + out.append(c.getText()); + } +- return out.toString().replaceFirst("^(" + defaultColor + ")*", ""); ++ return out.toString().replaceFirst("^(" + defaultColor + ")", ""); // Paper - GH-1484 + } + + public static IChatBaseComponent fixComponent(IChatBaseComponent component) { +-- +2.19.0 +