diff options
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 7e3a7f09b..bf95d24c9 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -991,7 +991,7 @@ void handle_who(char **parameters, int pcnt, userrec *user) n_list++; if (n_list > MaxWhoResults) { - WriteServ(user->fd,"557 %s WHO :Command aborted: More results than configured limit",user->nick); + WriteServ(user->fd,"523 %s WHO :Command aborted: More results than configured limit",user->nick); break; } } @@ -1030,7 +1030,7 @@ void handle_who(char **parameters, int pcnt, userrec *user) n_list++; if (n_list > MaxWhoResults) { - WriteServ(user->fd,"557 %s WHO :Command aborted: More results than configured limit",user->nick); + WriteServ(user->fd,"523 %s WHO :Command aborted: More results than configured limit",user->nick); break; } |