Jump to content

Minecraft freezes when using the command.


WaningMatrix

Recommended Posts

So whenever I Run the Minecraft Client the client launches successfully but as soon as I run my command like /command , mc freezes and intelliJ shows this in the debug screen

unknown.png?width=812&height=382

and the main console shows this

unknown.png?width=812&height=376

Here is my ProcessCommand 

public void processCommand(ICommandSender sender, String[] args) throws CommandException {
        if (args.length == 0) {
            // do this
        } 
  else if (args[0].equalsIgnoreCase("add")) {
                // do this
        } 
  else if (args[0].equalsIgnoreCase("remove")) {
                // do this
        } 
  else if (args[0].equalsIgnoreCase("list")) {
                // do this
         }
  else if (args[0].equalsIgnoreCase("flush")) {
                //do this
        } 
  else  {
                sender.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Error: Wrong command usage"));
        }
}

What am I doing wrong in here?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.