2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
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
|
2024-01-19 17:54:05 +01:00
|
|
|
index 2de557a5ed91e2036a7f558cfca8b174cd534959..565685d0f41311bc2281d11ee9d751bf4d4c93a3 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/commands/Commands.java
|
|
|
|
+++ b/src/main/java/net/minecraft/commands/Commands.java
|
2023-12-06 04:34:04 +01:00
|
|
|
@@ -456,7 +456,12 @@ public class Commands {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void sendCommands(ServerPlayer player) {
|
|
|
|
- if ( org.spigotmc.SpigotConfig.tabComplete < 0 ) return; // Spigot
|
|
|
|
+ // Paper start - Send empty commands if tab completion is disabled
|
2024-01-19 17:54:05 +01:00
|
|
|
+ if (org.spigotmc.SpigotConfig.tabComplete < 0) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ player.connection.send(new ClientboundCommandsPacket(new RootCommandNode<>()));
|
|
|
|
+ return;
|
|
|
|
+ }
|
2024-01-19 17:54:05 +01:00
|
|
|
+ // Paper end - Send empty commands if tab completion is disabled
|
2021-06-11 14:02:28 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
// Register Vanilla commands into builtRoot as before
|
|
|
|
// Paper start - Async command map building
|