summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/command/Help.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/command/Help.java')
-rw-r--r--src/main/java/net/tylermurphy/hideAndSeek/command/Help.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/command/Help.java b/src/main/java/net/tylermurphy/hideAndSeek/command/Help.java
index 97224d7..5de7210 100644
--- a/src/main/java/net/tylermurphy/hideAndSeek/command/Help.java
+++ b/src/main/java/net/tylermurphy/hideAndSeek/command/Help.java
@@ -23,6 +23,8 @@ import net.md_5.bungee.api.ChatColor;
import net.tylermurphy.hideAndSeek.util.CommandHandler;
import org.bukkit.entity.Player;
+import java.util.List;
+
public class Help implements ICommand {
public void execute(Player sender, String[] args) {
@@ -46,4 +48,8 @@ public class Help implements ICommand {
return "Get the commands for the plugin";
}
+ public List<String> autoComplete(String parameter) {
+ return null;
+ }
+
}