diff options
Diffstat (limited to 'modules/chanserv/cs_xop.cpp')
-rw-r--r-- | modules/chanserv/cs_xop.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/chanserv/cs_xop.cpp b/modules/chanserv/cs_xop.cpp index 0ec8e8d25..b1791e5fe 100644 --- a/modules/chanserv/cs_xop.cpp +++ b/modules/chanserv/cs_xop.cpp @@ -116,7 +116,7 @@ private: if (Anope::ReadOnly) { - source.Reply(_("Sorry, channel %s list modification is temporarily disabled."), source.command.c_str()); + source.Reply(READ_ONLY_MODE, source.command.c_str()); return; } @@ -246,7 +246,7 @@ private: if (Anope::ReadOnly) { - source.Reply(_("Sorry, channel %s list modification is temporarily disabled."), source.command.c_str()); + source.Reply(READ_ONLY_MODE, source.command.c_str()); return; } @@ -464,7 +464,7 @@ private: { if (Anope::ReadOnly) { - source.Reply(_("Sorry, channel %s list modification is temporarily disabled."), source.command.c_str()); + source.Reply(READ_ONLY_MODE, source.command.c_str()); return; } |