Removed descriptions from commands

This commit is contained in:
rtm516 2020-04-19 11:08:42 +01:00 committed by GitHub
parent 2dc9a7186e
commit 89a7f8f17c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public class JavaServerDeclareCommandsTranslator extends PacketTranslator<Server
CommandParamData[][] params = getParams(commandID, packet.getNodes()[commandID], packet.getNodes());
// Build the completed command and add it to the final list
CommandData data = new CommandData(commandName, "A Java server command", flags, (byte) 0, aliases, params);
CommandData data = new CommandData(commandName, "", flags, (byte) 0, aliases, params);
commandData.add(data);
}