diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-03-16 05:36:12 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-03-16 05:36:12 +0100 |
commit | bceeda80875f15327ac9cc2a930822a910ac0cb8 (patch) | |
tree | 98c5b75b3328282169387032e467aaf069717954 | |
parent | ddfb16de1a61a9b80ece0ba6e5fd34326abf5f18 (diff) |
fixed displaying the RESEND command in /nickserv help output
-rw-r--r-- | modules/core/ns_register.cpp | 2 |
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")); } }; |