From 0d928cd3c788ba9814ef9def54eeaf4470a8afb8 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Mon, 14 Feb 2011 14:53:34 +0100 Subject: [PATCH] Make the output of "/znc help" smaller The explanation for the arguments for AddPort and DelPort can still be reached via e.g. "/znc addport". Removing this makes the output from /znc help a lot smaller. Signed-off-by: Uli Schlachter --- ClientCommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ClientCommand.cpp b/ClientCommand.cpp index bd18643c..9b19da93 100644 --- a/ClientCommand.cpp +++ b/ClientCommand.cpp @@ -1329,12 +1329,12 @@ void CClient::HelpUser() { Table.AddRow(); Table.SetCell("Command", "AddPort"); - Table.SetCell("Arguments", "<[+]port> [bindhost]"); + Table.SetCell("Arguments", ""); Table.SetCell("Description", "Add another port for ZNC to listen on"); Table.AddRow(); Table.SetCell("Command", "DelPort"); - Table.SetCell("Arguments", " [bindhost]"); + Table.SetCell("Arguments", ""); Table.SetCell("Description", "Remove a port from ZNC"); Table.AddRow();