diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-15 12:09:58 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-15 12:09:58 +0000 |
commit | ad86535024e3a85bd161b711aabe93997a5705ad (patch) | |
tree | 71aa76167c8b8abee24dba92554a4b9653b9444e /modules/botserv/bs_assign.cpp | |
parent | 628f4d2a7e4d072439ad8f30cf6fb702e14f134b (diff) |
Consistently use READ_ONLY_MODE everywhere.
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; } |