Posted January 23, 201510 yr So I'm learning the basics around Forge and the API. I wanted to add in a command, and in the tutorial I'm looking at ( http://www.minecraftforge.net/wiki/Server_Command ) it has this code: @Override public void processCommand(ICommandSender icommandsender, String[] astring) { if(astring.length == 0) { icommandsender.sendChatToPlayer("Invalid arguments"); return; } icommandsender.sendChatToPlayer("Sample: [" + astring[0] + "]"); } icommandsender.sendChatToPlayer("Sample: [" + astring[0] + "]"); } Obviously, eclipse is throwing errors on the sendChatToPlayer method. I change it to addChatMessage and it looks good, as the javadocs has that method in ICommandSender. Eclipse is telling me that addChatMessage can not be resolved or is not a field. Could I get some clarification?
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.