mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
54 lines
1.8 KiB
Diff
54 lines
1.8 KiB
Diff
From 42d2418969eb65f19fbd37e70ce1d614c60c052d Mon Sep 17 00:00:00 2001
|
|
From: md_5 <md_5@live.com.au>
|
|
Date: Fri, 21 Jun 2013 18:05:54 +1000
|
|
Subject: [PATCH] Allow Disabling of Command TabComplete
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
index 6dc4157..fdac2f6 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
@@ -1698,6 +1698,13 @@ public final class CraftServer implements Server {
|
|
}
|
|
|
|
public List<String> tabCompleteCommand(Player player, String message) {
|
|
+ // Spigot Start
|
|
+ if ( (org.spigotmc.SpigotConfig.tabComplete < 0 || message.length() <= org.spigotmc.SpigotConfig.tabComplete) && !message.contains( " " ) )
|
|
+ {
|
|
+ return ImmutableList.of();
|
|
+ }
|
|
+ // Spigot End
|
|
+
|
|
List<String> completions = null;
|
|
try {
|
|
completions = getCommandMap().tabComplete(player, message.substring(1));
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
index c9e6dc5..f611334 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
@@ -154,4 +154,21 @@ public class SpigotConfig
|
|
{
|
|
logCommands = getBoolean( "commands.log", true );
|
|
}
|
|
+
|
|
+ public static int tabComplete;
|
|
+ private static void tabComplete()
|
|
+ {
|
|
+ if ( version < 6 )
|
|
+ {
|
|
+ boolean oldValue = getBoolean( "commands.tab-complete", true );
|
|
+ if ( oldValue )
|
|
+ {
|
|
+ set( "commands.tab-complete", 0 );
|
|
+ } else
|
|
+ {
|
|
+ set( "commands.tab-complete", -1 );
|
|
+ }
|
|
+ }
|
|
+ tabComplete = getInt( "commands.tab-complete", 0 );
|
|
+ }
|
|
}
|
|
--
|
|
1.9.1
|
|
|