diff --git a/modules/cert.cpp b/modules/cert.cpp index 826dbfbc..d5a7beef 100644 --- a/modules/cert.cpp +++ b/modules/cert.cpp @@ -46,7 +46,7 @@ public: AddHelpCommand(); AddCommand("delete", static_cast(&CCertMod::Delete), "", "Delete the current certificate"); - AddCommand("info", static_cast(&CCertMod::Info)); + AddCommand("info", static_cast(&CCertMod::Info), "", "Show the current certificate"); } virtual ~CCertMod() {} diff --git a/modules/certauth.cpp b/modules/certauth.cpp index 175a6740..8b420873 100644 --- a/modules/certauth.cpp +++ b/modules/certauth.cpp @@ -32,7 +32,7 @@ public: "[pubkey]", "If pubkey is not provided will use the current key"); AddCommand("Del", static_cast(&CSSLClientCertMod::HandleDelCommand), "id"); - AddCommand("List", static_cast(&CSSLClientCertMod::HandleListCommand)); + AddCommand("List", static_cast(&CSSLClientCertMod::HandleListCommand),"", "List your public keys"); AddCommand("Show", static_cast(&CSSLClientCertMod::HandleShowCommand), "", "Print your current key"); } diff --git a/modules/lastseen.cpp b/modules/lastseen.cpp index 414310fc..43132cef 100644 --- a/modules/lastseen.cpp +++ b/modules/lastseen.cpp @@ -71,7 +71,7 @@ private: public: MODCONSTRUCTOR(CLastSeenMod) { AddHelpCommand(); - AddCommand("Show", static_cast(&CLastSeenMod::ShowCommand)); + AddCommand("Show", static_cast(&CLastSeenMod::ShowCommand),"", "Shows list of users and when they last logged in"); } virtual ~CLastSeenMod() {} diff --git a/modules/route_replies.cpp b/modules/route_replies.cpp index 458a758e..a587ac5f 100644 --- a/modules/route_replies.cpp +++ b/modules/route_replies.cpp @@ -218,7 +218,7 @@ public: AddHelpCommand(); AddCommand("Silent", static_cast(&CRouteRepliesMod::SilentCommand), - "[yes|no]"); + "[yes|no]", "Decides whether to show the timeout messages or not"); } virtual ~CRouteRepliesMod() { @@ -369,7 +369,8 @@ public: // The timer will be deleted after this by the event loop if (!GetNV("silent_timeouts").ToBool()) { - PutModule("This module hit a timeout which is possibly a bug."); + PutModule("This module hit a timeout which is probably a connectivity issue."); + PutModule("However, if you can provide steps to reproduce this issue, please do report a bug."); PutModule("To disable this message, do \"/msg " + GetModNick() + " silent yes\""); PutModule("Last request: " + m_sLastRequest);