aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0630-Don-t-respond-to-ServerboundCommandSuggestionPacket-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0630-Don-t-respond-to-ServerboundCommandSuggestionPacket-.patch')
-rw-r--r--patches/server/0630-Don-t-respond-to-ServerboundCommandSuggestionPacket-.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/patches/server/0630-Don-t-respond-to-ServerboundCommandSuggestionPacket-.patch b/patches/server/0630-Don-t-respond-to-ServerboundCommandSuggestionPacket-.patch
new file mode 100644
index 0000000000..f426fa8333
--- /dev/null
+++ b/patches/server/0630-Don-t-respond-to-ServerboundCommandSuggestionPacket-.patch
@@ -0,0 +1,23 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: stonar96 <[email protected]>
+Date: Sun, 12 Sep 2021 00:14:21 +0200
+Subject: [PATCH] Don't respond to ServerboundCommandSuggestionPacket when
+ tab-complete is disabled
+
+
+diff --git a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+index c0fd3f596384e6bb8aee0d6b33daecd7e5b33878..a8c3a2988db845420b254729d125cc2c51660323 100644
+--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
++++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+@@ -745,6 +745,11 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
+ return;
+ }
+ // CraftBukkit end
++ // Paper start - Don't suggest if tab-complete is disabled
++ if (org.spigotmc.SpigotConfig.tabComplete < 0) {
++ return;
++ }
++ // Paper end - Don't suggest if tab-complete is disabled
+ // Paper start - AsyncTabCompleteEvent
+ TAB_COMPLETE_EXECUTOR.execute(() -> this.handleCustomCommandSuggestions0(packet));
+ }