diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-24 15:20:47 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-24 15:20:47 +0100 |
commit | e182519e4d2f35c9fed070c9fb5004276c865070 (patch) | |
tree | 4130b8c19b994d42d0ea25f34fef4a21f7a5ba8e | |
parent | 4317b5557e432b6477f22d8f2bb5320e82057b51 (diff) |
Fix using the wrong command name in the help module.
-rw-r--r-- | modules/help.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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 |