diff --git a/modules/certauth.cpp b/modules/certauth.cpp index 30448f0b..3e5fe93b 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 44055421..3df2d392 100644 --- a/modules/lastseen.cpp +++ b/modules/lastseen.cpp @@ -70,7 +70,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 6d44a67b..f667a047 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() {