aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0588-Send-empty-commands-if-tab-completion-is-disabled.patch
diff options
context:
space:
mode:
authorbooky10 <[email protected]>2023-11-04 20:20:01 +0100
committerGitHub <[email protected]>2023-11-04 20:20:01 +0100
commitf78d7ce8ffb7e4b6fd5ee256f5e3678ea04fd807 (patch)
tree8e7abee5129e15a919630824c4f194a2811f7242 /patches/server/0588-Send-empty-commands-if-tab-completion-is-disabled.patch
parent44057da46727138e19d951b56e98ad8c25c1f869 (diff)
downloadPaper-f78d7ce8ffb7e4b6fd5ee256f5e3678ea04fd807.tar.gz
Paper-f78d7ce8ffb7e4b6fd5ee256f5e3678ea04fd807.zip
Remove "fix-curing-zombie-villager-discount" exploit option (#9895)
Diffstat (limited to 'patches/server/0588-Send-empty-commands-if-tab-completion-is-disabled.patch')
-rw-r--r--patches/server/0588-Send-empty-commands-if-tab-completion-is-disabled.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/server/0588-Send-empty-commands-if-tab-completion-is-disabled.patch b/patches/server/0588-Send-empty-commands-if-tab-completion-is-disabled.patch
new file mode 100644
index 0000000000..d0ff308b9e
--- /dev/null
+++ b/patches/server/0588-Send-empty-commands-if-tab-completion-is-disabled.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Shane Freeder <[email protected]>
+Date: Mon, 26 Apr 2021 01:27:08 +0100
+Subject: [PATCH] Send empty commands if tab completion is disabled
+
+
+diff --git a/src/main/java/net/minecraft/commands/Commands.java b/src/main/java/net/minecraft/commands/Commands.java
+index c37d9fb4f1fb388e5c264404de378cee298fd253..5fd7e5aa0644fda8e2f7f57eef9a6f0011534cb9 100644
+--- a/src/main/java/net/minecraft/commands/Commands.java
++++ b/src/main/java/net/minecraft/commands/Commands.java
+@@ -402,7 +402,12 @@ public class Commands {
+ }
+
+ public void sendCommands(ServerPlayer player) {
+- if ( org.spigotmc.SpigotConfig.tabComplete < 0 ) return; // Spigot
++ // Paper start - Send empty commands if tab completion is disabled
++ if ( org.spigotmc.SpigotConfig.tabComplete < 0 ) { //return; // Spigot
++ player.connection.send(new ClientboundCommandsPacket(new RootCommandNode<>()));
++ return;
++ }
++ // Paper end
+ // CraftBukkit start
+ // Register Vanilla commands into builtRoot as before
+ // Paper start - Async command map building