From 91e25d490a73b9667c88c88987535a6d22a83aec Mon Sep 17 00:00:00 2001 From: CDFN Date: Sat, 16 Jan 2021 20:10:42 +0100 Subject: [PATCH] Return chat component with empty text instead of throwing exception. Fixes #3328 Signed-off-by: MiniDigger | Martin --- ...onent-with-empty-text-instead-of-thr.patch | 20 +++++++++++++++ ...onent-with-empty-text-instead-of-thr.patch | 25 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 Spigot-API-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch create mode 100644 Spigot-Server-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch diff --git a/Spigot-API-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch b/Spigot-API-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch new file mode 100644 index 000000000..7592cddff --- /dev/null +++ b/Spigot-API-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch @@ -0,0 +1,20 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: CDFN +Date: Tue, 7 Jul 2020 17:53:23 +0200 +Subject: [PATCH] Return chat component with empty text instead of throwing + exception + + +diff --git a/src/main/java/org/bukkit/inventory/InventoryView.java b/src/main/java/org/bukkit/inventory/InventoryView.java +index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 +--- a/src/main/java/org/bukkit/inventory/InventoryView.java ++++ b/src/main/java/org/bukkit/inventory/InventoryView.java +@@ -0,0 +0,0 @@ public abstract class InventoryView { + /** + * Get the title of this inventory window. + * +- * @return The title. ++ * @return The title or empty string when title is {@code null}. + */ + @NotNull + public abstract String getTitle(); diff --git a/Spigot-Server-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch b/Spigot-Server-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch new file mode 100644 index 000000000..33e863490 --- /dev/null +++ b/Spigot-Server-Patches/Return-chat-component-with-empty-text-instead-of-thr.patch @@ -0,0 +1,25 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: CDFN +Date: Tue, 7 Jul 2020 17:53:23 +0200 +Subject: [PATCH] Return chat component with empty text instead of throwing + exception + + +diff --git a/src/main/java/net/minecraft/server/Container.java b/src/main/java/net/minecraft/server/Container.java +index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 +--- a/src/main/java/net/minecraft/server/Container.java ++++ b/src/main/java/net/minecraft/server/Container.java +@@ -0,0 +0,0 @@ public abstract class Container { + } + private IChatBaseComponent title; + public final IChatBaseComponent getTitle() { +- Preconditions.checkState(this.title != null, "Title not set"); ++ // Paper start - return chat component with empty text instead of throwing error ++ // Preconditions.checkState(this.title != null, "Title not set"); ++ if(this.title == null){ ++ return new ChatComponentText(""); ++ } ++ // Paper end + return this.title; + } + public final void setTitle(IChatBaseComponent title) {