summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/commands/Reload.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/commands/Reload.java')
-rw-r--r--src/main/java/net/tylermurphy/hideAndSeek/commands/Reload.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/commands/Reload.java b/src/main/java/net/tylermurphy/hideAndSeek/commands/Reload.java
deleted file mode 100644
index 04128c5..0000000
--- a/src/main/java/net/tylermurphy/hideAndSeek/commands/Reload.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package net.tylermurphy.hideAndSeek.commands;
-
-import org.bukkit.command.CommandSender;
-
-import net.tylermurphy.hideAndSeek.Store;
-import net.tylermurphy.hideAndSeek.util.ICommand;
-
-import static net.tylermurphy.hideAndSeek.Store.*;
-
-public class Reload implements ICommand {
-
- public void execute(CommandSender sender, String[] args) {
- Store.loadConfig();
- sender.sendMessage(messagePrefix + "Reloaded the config");
- }
-
- public String getLabel() {
- return "reload";
- }
-
- public String getUsage() {
- return "";
- }
-
- public String getDescription() {
- return "Reloads the config";
- }
-
-}