2014-04-02 09:00:58 +02:00
|
|
|
From aaff66ed71f21dd1228b50834d3a6d1daa3922dd Mon Sep 17 00:00:00 2001
|
2013-06-21 10:06:04 +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
|
2014-04-02 09:00:58 +02:00
|
|
|
index f04a35e..f06cac5 100644
|
2013-06-21 10:06:04 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2014-03-29 23:09:24 +01:00
|
|
|
@@ -1578,6 +1578,13 @@ public final class CraftServer implements Server {
|
2013-12-17 14:56:38 +01:00
|
|
|
}
|
|
|
|
|
2013-06-21 10:06:04 +02:00
|
|
|
public List<String> tabCompleteCommand(Player player, String message) {
|
2013-12-17 14:56:38 +01:00
|
|
|
+ // Spigot Start
|
2014-04-02 09:00:58 +02:00
|
|
|
+ if ( (org.spigotmc.SpigotConfig.tabComplete < 0 || message.length() <= org.spigotmc.SpigotConfig.tabComplete) && !message.contains( " " ) )
|
2013-12-17 14:56:38 +01:00
|
|
|
+ {
|
|
|
|
+ return ImmutableList.of();
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
+
|
2013-06-21 10:06:04 +02:00
|
|
|
List<String> completions = null;
|
|
|
|
try {
|
2013-12-17 14:56:38 +01:00
|
|
|
completions = getCommandMap().tabComplete(player, message.substring(1));
|
2013-06-21 10:06:04 +02:00
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
2014-04-02 09:00:58 +02:00
|
|
|
index afd6b56..20634f1 100644
|
2013-06-21 10:06:04 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
2014-04-02 09:00:58 +02:00
|
|
|
@@ -136,4 +136,21 @@ public class SpigotConfig
|
2013-06-21 10:06:04 +02:00
|
|
|
{
|
|
|
|
logCommands = getBoolean( "commands.log", true );
|
|
|
|
}
|
|
|
|
+
|
2014-04-02 09:00:58 +02:00
|
|
|
+ public static int tabComplete;
|
2013-06-21 10:57:20 +02:00
|
|
|
+ private static void tabComplete()
|
2013-06-21 10:06:04 +02:00
|
|
|
+ {
|
2014-04-02 09:00:58 +02:00
|
|
|
+ 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 );
|
2013-06-21 10:06:04 +02:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2014-03-29 23:09:24 +01:00
|
|
|
1.8.3.2
|
2013-06-21 10:06:04 +02:00
|
|
|
|