aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0718-Fix-suggest-command-message-for-brigadier-syntax-exc.patch
diff options
context:
space:
mode:
authorNassim Jahnke <[email protected]>2024-12-03 20:34:55 +0100
committerNassim Jahnke <[email protected]>2024-12-03 20:46:25 +0100
commit5265287323b5c8c4148659b3630a22db92bb9dc4 (patch)
treea2ba3cfda5cdc85be169518fcf28fdedb373ce18 /patches/server/0718-Fix-suggest-command-message-for-brigadier-syntax-exc.patch
parentbd55e322d8cfb8f4d4fed04b38243bc4940fab50 (diff)
downloadPaper-5265287323b5c8c4148659b3630a22db92bb9dc4.tar.gz
Paper-5265287323b5c8c4148659b3630a22db92bb9dc4.zip
More more more more work
Diffstat (limited to 'patches/server/0718-Fix-suggest-command-message-for-brigadier-syntax-exc.patch')
-rw-r--r--patches/server/0718-Fix-suggest-command-message-for-brigadier-syntax-exc.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/patches/server/0718-Fix-suggest-command-message-for-brigadier-syntax-exc.patch b/patches/server/0718-Fix-suggest-command-message-for-brigadier-syntax-exc.patch
new file mode 100644
index 0000000000..4627673f0f
--- /dev/null
+++ b/patches/server/0718-Fix-suggest-command-message-for-brigadier-syntax-exc.patch
@@ -0,0 +1,20 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: chickeneer <[email protected]>
+Date: Mon, 1 Aug 2022 20:13:02 -0500
+Subject: [PATCH] Fix suggest command message for brigadier syntax exceptions
+
+This is a bug accidentally introduced in upstream CB
+
+diff --git a/src/main/java/net/minecraft/commands/Commands.java b/src/main/java/net/minecraft/commands/Commands.java
+index 800d1756db8c27b7d129a90addc125c4fc81e134..977f9ac300490562d9894af4a42621b594f0a8e0 100644
+--- a/src/main/java/net/minecraft/commands/Commands.java
++++ b/src/main/java/net/minecraft/commands/Commands.java
+@@ -391,7 +391,7 @@ public class Commands {
+ if (commandsyntaxexception.getInput() != null && commandsyntaxexception.getCursor() >= 0) {
+ int i = Math.min(commandsyntaxexception.getInput().length(), commandsyntaxexception.getCursor());
+ MutableComponent ichatmutablecomponent = Component.empty().withStyle(ChatFormatting.GRAY).withStyle((chatmodifier) -> {
+- return chatmodifier.withClickEvent(new ClickEvent(ClickEvent.Action.SUGGEST_COMMAND, label)); // CraftBukkit
++ return chatmodifier.withClickEvent(new ClickEvent(ClickEvent.Action.SUGGEST_COMMAND, "/" + label)); // CraftBukkit // Paper
+ });
+
+ if (i > 10) {