diff options
Diffstat (limited to 'modules/core/cs_clearusers.cpp')
-rw-r--r-- | modules/core/cs_clearusers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_clearusers.cpp b/modules/core/cs_clearusers.cpp index ef82240fc..2c11a132b 100644 --- a/modules/core/cs_clearusers.cpp +++ b/modules/core/cs_clearusers.cpp @@ -32,9 +32,9 @@ class CommandCSClearUsers : public Command Anope::string modebuf; if (!c) - source.Reply(LanguageString::CHAN_X_NOT_IN_USE, chan.c_str()); + source.Reply(_(CHAN_X_NOT_IN_USE), chan.c_str()); else if (!check_access(u, ci, CA_FOUNDER)) - source.Reply(LanguageString::ACCESS_DENIED); + source.Reply(_(ACCESS_DENIED)); Anope::string buf = "CLEARUSERS command from " + u->nick + " (" + u->Account()->display + ")"; |