SPIGOT-4177: Change behaviour of item display names yet again

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2018-07-29 09:24:42 +10:00
parent 9202a305e9
commit 9123e804dc
2 changed files with 6 additions and 2 deletions

View File

@@ -138,6 +138,10 @@ public final class CraftChatMessage {
}
}
public static IChatBaseComponent wrapOrNull(String message) {
return (message == null || message.isEmpty()) ? null : new ChatComponentText(message);
}
public static IChatBaseComponent fromStringOrNull(String message) {
return (message == null || message.isEmpty()) ? null : fromString(message)[0];
}