2015-03-08 12:04:41 +01:00
|
|
|
From a5e7345a25a12e589e3fc6971e3fd84c8a7d690a Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
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
|
2015-02-28 12:36:22 +01:00
|
|
|
index 58d52d8..905573c 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2015-02-28 12:36:22 +01:00
|
|
|
@@ -1571,6 +1571,13 @@ public final class CraftServer implements Server {
|
2014-07-21 22:46:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2014-11-28 02:17:45 +01:00
|
|
|
index 4e7d731..0a6ab75 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
2014-07-30 10:35:19 +02:00
|
|
|
@@ -154,4 +154,21 @@ public class SpigotConfig
|
2014-07-21 22:46:54 +02:00
|
|
|
{
|
|
|
|
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 );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2014-11-28 02:17:45 +01:00
|
|
|
2.1.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|