summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@anope.org>2011-03-16 05:36:12 +0100
committerDukePyrolator <DukePyrolator@anope.org>2011-03-16 05:36:12 +0100
commitbceeda80875f15327ac9cc2a930822a910ac0cb8 (patch)
tree98c5b75b3328282169387032e467aaf069717954
parentddfb16de1a61a9b80ece0ba6e5fd34326abf5f18 (diff)
fixed displaying the RESEND command in /nickserv help output
-rw-r--r--modules/core/ns_register.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/ns_register.cpp b/modules/core/ns_register.cpp
index 531933340..6a79c89b1 100644
--- a/modules/core/ns_register.cpp
+++ b/modules/core/ns_register.cpp
@@ -310,7 +310,7 @@ class CommandNSResend : public Command
void OnServHelp(CommandSource &source)
{
if (Config->NSEmailReg)
- source.Reply(_("Resend the registration passcode"));
+ source.Reply(" %-14s %s", this->name.c_str(),_("Resend the registration passcode"));
}
};