diff options
Diffstat (limited to 'modules/botserv/bs_assign.cpp')
-rw-r--r-- | modules/botserv/bs_assign.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/botserv/bs_assign.cpp b/modules/botserv/bs_assign.cpp index 43abdd55f..22f4ca076 100644 --- a/modules/botserv/bs_assign.cpp +++ b/modules/botserv/bs_assign.cpp @@ -28,7 +28,7 @@ public: if (Anope::ReadOnly) { - source.Reply(_("Sorry, bot assignment is temporarily disabled.")); + source.Reply(READ_ONLY_MODE); return; } @@ -97,7 +97,7 @@ public: { if (Anope::ReadOnly) { - source.Reply(_("Sorry, bot assignment is temporarily disabled.")); + source.Reply(READ_ONLY_MODE); return; } @@ -164,7 +164,7 @@ public: if (Anope::ReadOnly) { - source.Reply(_("Sorry, bot modification is temporarily disabled.")); + source.Reply(READ_ONLY_MODE); return; } |