aboutsummaryrefslogtreecommitdiff
path: root/Danker/commands/ReloadConfigCommand.java
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-07-11 00:57:31 -0400
committerbowser0000 <bowser0000@gmail.com>2020-07-11 00:57:31 -0400
commit8a87957922a40ed3f29356098ee231e3338b1922 (patch)
tree1124df2c5482777b553e6cc0dd1804c59eafa25d /Danker/commands/ReloadConfigCommand.java
parentc0017a23a6aefa6ac779551022b928bca451d46a (diff)
downloadSkyblockMod-8a87957922a40ed3f29356098ee231e3338b1922.tar.gz
SkyblockMod-8a87957922a40ed3f29356098ee231e3338b1922.tar.bz2
SkyblockMod-8a87957922a40ed3f29356098ee231e3338b1922.zip
Revert "Add tracker and display for all slayer drops"
This reverts commit c0017a23a6aefa6ac779551022b928bca451d46a.
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."));
- }
-
-}