aboutsummaryrefslogtreecommitdiff
path: root/Danker/commands/DisplayCommand.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/DisplayCommand.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/DisplayCommand.java')
-rw-r--r--Danker/commands/DisplayCommand.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/Danker/commands/DisplayCommand.java b/Danker/commands/DisplayCommand.java
deleted file mode 100644
index 534ce16..0000000
--- a/Danker/commands/DisplayCommand.java
+++ /dev/null
@@ -1,55 +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 DisplayCommand extends CommandBase {
- public static String display;
-
- @Override
- public String getCommandName() {
- return "display";
- }
-
- @Override
- public String getCommandUsage(ICommandSender arg0) {
- return getCommandName() + " [zombie/spider/wolf/off]";
- }
-
- @Override
- public int getRequiredPermissionLevel() {
- return 0;
- }
-
- @Override
- public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
- final EntityPlayer player = (EntityPlayer) arg0;
-
- if (arg1.length == 0) {
- player.addChatMessage(new ChatComponentText("Usage: /display [zombie/spider/wolf/off]"));
- return;
- }
-
- final ConfigHandler cf = new ConfigHandler();
-
- if (arg1[0].equalsIgnoreCase("wolf")) {
- display = "wolf";
- } else if (arg1[0].equalsIgnoreCase("spider")) {
- display = "spider";
- } else if (arg1[0].equalsIgnoreCase("zombie")) {
- display = "zombie";
- } else if (arg1[0].equalsIgnoreCase("off")) {
- display = "off";
- } else {
- player.addChatMessage(new ChatComponentText("Usage: /display [zombie/spider/wolf/off]"));
- return;
- }
- player.addChatMessage(new ChatComponentText("Display set to " + display + "."));
- cf.writeStringConfig("misc", "display", display);
- }
-
-}