aboutsummaryrefslogtreecommitdiff
path: root/Danker/commands/ReloadConfigCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'Danker/commands/ReloadConfigCommand.java')
-rw-r--r--Danker/commands/ReloadConfigCommand.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/Danker/commands/ReloadConfigCommand.java b/Danker/commands/ReloadConfigCommand.java
deleted file mode 100644
index 4eda66b..0000000
--- a/Danker/commands/ReloadConfigCommand.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package me.Danker.commands;
-
-import me.Danker.handlers.ConfigHandler;
-import net.minecraft.command.CommandBase;
-import net.minecraft.command.CommandException;
-import net.minecraft.command.ICommandSender;
-import net.minecraft.entity.player.EntityPlayer;
-import net.minecraft.util.ChatComponentText;
-
-public class ReloadConfigCommand extends CommandBase {
-
- @Override
- public String getCommandName() {
- return "reloadconfig";
- }
-
- @Override
- public String getCommandUsage(ICommandSender arg0) {
- return getCommandName();
- }
-
- @Override
- public int getRequiredPermissionLevel() {
- return 0;
- }
-
- @Override
- public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
- final EntityPlayer player = (EntityPlayer)arg0;
- final ConfigHandler cf = new ConfigHandler();
- cf.reloadConfig();
- player.addChatMessage(new ChatComponentText("Reloaded config."));
- }
-
-}