From 673b04f1fc9790fba4b9e97655e69f9cd3f0190b Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 9 Jul 2026 18:55:05 +0100 Subject: [PATCH] Make the description of nickserv/sendpass more accurate. --- modules/nickserv/ns_resetpass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nickserv/ns_resetpass.cpp b/modules/nickserv/ns_resetpass.cpp index 63263d138..205847a6c 100644 --- a/modules/nickserv/ns_resetpass.cpp +++ b/modules/nickserv/ns_resetpass.cpp @@ -22,7 +22,7 @@ class CommandNSResetPass final public: CommandNSResetPass(Module *creator) : Command(creator, "nickserv/resetpass", 2, 2) { - this->SetDesc(_("Helps you reset lost passwords")); + this->SetDesc(_("Send an email to recover access to an account")); this->SetSyntax(_("\037nickname\037 \037email\037")); this->AllowUnregistered(true); }