diff --git a/modules/chanserv/cs_set_misc.cpp b/modules/chanserv/cs_set_misc.cpp index 68c4e6b80..ad36f703a 100644 --- a/modules/chanserv/cs_set_misc.cpp +++ b/modules/chanserv/cs_set_misc.cpp @@ -171,6 +171,7 @@ public: if (descriptions.count(source.command)) { this->SendSyntax(source); + source.Reply(" "); source.Reply("%s", Language::Translate(source.nc, descriptions[source.command].c_str())); return true; } diff --git a/modules/nickserv/ns_set_misc.cpp b/modules/nickserv/ns_set_misc.cpp index e408d42b6..5fb22b923 100644 --- a/modules/nickserv/ns_set_misc.cpp +++ b/modules/nickserv/ns_set_misc.cpp @@ -167,6 +167,7 @@ public: if (descriptions.count(source.command)) { this->SendSyntax(source); + source.Reply(" "); source.Reply("%s", Language::Translate(source.nc, descriptions[source.command].c_str())); return true; }