diff options
Diffstat (limited to 'src/main/java/com/dulkirmod/commands/EnchantRuneCommand.java')
-rw-r--r-- | src/main/java/com/dulkirmod/commands/EnchantRuneCommand.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main/java/com/dulkirmod/commands/EnchantRuneCommand.java b/src/main/java/com/dulkirmod/commands/EnchantRuneCommand.java deleted file mode 100644 index 3a38053..0000000 --- a/src/main/java/com/dulkirmod/commands/EnchantRuneCommand.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.dulkirmod.commands; - -import com.dulkirmod.Settings; -import net.minecraft.client.Minecraft; -import net.minecraft.command.CommandException; -import net.minecraft.command.ICommandSender; -import net.minecraft.util.ChatComponentText; -import net.minecraft.util.EnumChatFormatting; - -public class EnchantRuneCommand extends ClientCommandBase { - - public EnchantRuneCommand() { - super("enchantrune"); - } - - @Override - public void processCommand(ICommandSender sender, String[] args) throws CommandException { - Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText( - EnumChatFormatting.BLACK+ "" + EnumChatFormatting.BOLD + "TOGGLED.")); - Settings.EnchantRune = !Settings.EnchantRune; - } -}
\ No newline at end of file |