aboutsummaryrefslogtreecommitdiff
path: root/Danker/commands/DisplayCommand.java
diff options
context:
space:
mode:
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);
- }
-
-}