From c73a6c621f01be3f56891cb199f70313b378baea Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 7 Jun 2025 13:27:30 +0100 Subject: [PATCH] Make the set_misc help format consistent with other set commands. --- modules/chanserv/cs_set_misc.cpp | 1 + modules/nickserv/ns_set_misc.cpp | 1 + 2 files changed, 2 insertions(+) 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; }