diff options
author | Sadie Powell <sadie@witchery.services> | 2021-04-19 19:58:03 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-04-19 19:59:41 +0100 |
commit | 9ec004958f2af816fc90f753964338eb19961186 (patch) | |
tree | fc59c31fd28302c36a92f6e75cefee547c892753 /src/modules | |
parent | bde0e7e84668df48afaffda7a52eddc0aca543d3 (diff) |
Improve the messages sent when loading/unloading/reloading modules.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_globalload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp index bba31ee43..01e9bbc6d 100644 --- a/src/modules/m_globalload.cpp +++ b/src/modules/m_globalload.cpp @@ -143,7 +143,7 @@ class CommandGReloadModule : public Command } else { - user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "Could not find module by that name"); + user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "Could not find a loaded module by that name"); return CMD_FAILURE; } } |