From 1325e042a6e7af37669bcd32e9d7a133f2ae22e6 Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Sun, 30 Oct 2022 21:40:59 -0400 Subject: finish beta build of multi map support --- src/main/java/net/tylermurphy/hideAndSeek/command/Help.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/net/tylermurphy/hideAndSeek/command/Help.java') 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 autoComplete(String parameter) { + return null; + } + } -- cgit v1.2.3-freya