diff options
Diffstat (limited to 'modules/core/os_oline.cpp')
-rw-r--r-- | modules/core/os_oline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/os_oline.cpp b/modules/core/os_oline.cpp index 6fc8903ac..0d5232e64 100644 --- a/modules/core/os_oline.cpp +++ b/modules/core/os_oline.cpp @@ -30,7 +30,7 @@ class CommandOSOLine : public Command /* let's check whether the user is online */ if (!(u2 = finduser(nick))) - source.Reply(LanguageString::NICK_X_NOT_IN_USE, nick.c_str()); + source.Reply(_(NICK_X_NOT_IN_USE), nick.c_str()); else if (u2 && flag[0] == '+') { ircdproto->SendSVSO(Config->s_OperServ, nick, flag); |