/// <summary> /// Deregisters a chat command from the CommandProcessor. /// </summary> /// <param name="name">The command to deregister.</param> /// <returns>Whether the deregistration of the command was successful or not.</returns> public bool DeregisterCommand(string name) { return(CommandProcessor.Deregister(name)); }