summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-16 20:14:39 +0000
committerSadie Powell <sadie@witchery.services>2025-03-16 20:21:34 +0000
commit99bcc6d3b71d51391d1f7fc2be99734028ffa413 (patch)
treee52eddd1e3632c05fd2153f4e8ac0b7f509a97e4 /modules
parent5fd2145821266fe9089f9f338301e0eaf1755298 (diff)
Improve the error reporting in os_shutdown.
Diffstat (limited to 'modules')
-rw-r--r--modules/operserv/os_shutdown.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/modules/operserv/os_shutdown.cpp b/modules/operserv/os_shutdown.cpp
index 37dc15747..75288c242 100644
--- a/modules/operserv/os_shutdown.cpp
+++ b/modules/operserv/os_shutdown.cpp
@@ -11,6 +11,8 @@
#include "module.h"
+#define WRONG_NETWORK _("The network name you specified is incorrect. Did you mean to run %s on a different network?")
+
class CommandOSQuit final
: public Command
{
@@ -28,7 +30,10 @@ public:
const auto networkname = Config->GetBlock("networkinfo").Get<Anope::string>("networkname");
if (requirename && (params.empty() || !params[0].equals_cs(networkname)))
{
- OnSyntaxError(source, source.command);
+ if (!params.empty())
+ source.Reply(WRONG_NETWORK, source.command.c_str());
+ else
+ OnSyntaxError(source, source.command);
return;
}
@@ -67,7 +72,10 @@ public:
const auto networkname = Config->GetBlock("networkinfo").Get<Anope::string>("networkname");
if (requirename && (params.empty() || !params[0].equals_cs(networkname)))
{
- OnSyntaxError(source, source.command);
+ if (!params.empty())
+ source.Reply(WRONG_NETWORK, source.command.c_str());
+ else
+ OnSyntaxError(source, source.command);
return;
}
@@ -104,7 +112,10 @@ public:
const auto networkname = Config->GetBlock("networkinfo").Get<Anope::string>("networkname");
if (requirename && (params.empty() || !params[0].equals_cs(networkname)))
{
- OnSyntaxError(source, source.command);
+ if (!params.empty())
+ source.Reply(WRONG_NETWORK, source.command.c_str());
+ else
+ OnSyntaxError(source, source.command);
return;
}