diff options
Diffstat (limited to 'modules/commands/hs_set.cpp')
-rw-r--r-- | modules/commands/hs_set.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/commands/hs_set.cpp b/modules/commands/hs_set.cpp index 5e7f9f2af..f3a7e1e8e 100644 --- a/modules/commands/hs_set.cpp +++ b/modules/commands/hs_set.cpp @@ -22,6 +22,11 @@ class CommandHSSet : public Command void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override { + if (Anope::ReadOnly) + { + source.Reply(READ_ONLY_MODE); + return; + } const Anope::string &nick = params[0]; @@ -123,6 +128,11 @@ class CommandHSSetAll : public Command void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override { + if (Anope::ReadOnly) + { + source.Reply(READ_ONLY_MODE); + return; + } Anope::string nick = params[0]; |