From e182519e4d2f35c9fed070c9fb5004276c865070 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 24 May 2025 15:20:47 +0100 Subject: Fix using the wrong command name in the help module. --- modules/help.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/help.cpp b/modules/help.cpp index 7b49764b9..6db0db372 100644 --- a/modules/help.cpp +++ b/modules/help.cpp @@ -121,7 +121,8 @@ public: if (!groups.empty()) { source.Reply(" "); - source.Reply(_("Use the \002%s\032ALL\002 command to list all commands and their descriptions."), source.command.nobreak().c_str()); + source.Reply(_("Use the \002%s\032ALL\002 command to list all commands and their descriptions."), + source_command.nobreak().c_str()); } } else -- cgit