diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-20 00:04:24 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-20 00:04:24 +0000 |
commit | af7015eae9836876b8fd144a932beb59d4d5dafe (patch) | |
tree | df5920fd457a6eaf2463ab122495fd068de3c277 /src | |
parent | 9e81044ffde2b1fc62456aca512d0cd7f1e52ad8 (diff) |
Added detail to /COMMANDS
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1457 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 2b96b0a8f..8525b4936 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -191,7 +191,7 @@ void handle_commands(char **parameters, int pcnt, userrec *user) { for (int i = 0; i < command_table.size(); i++) { - WriteServ(user->fd,"902 %s :%s %s",user->nick,command_table[i].command,command_table[i].source); + WriteServ(user->fd,"902 %s :%s %s %d",user->nick,command_table[i].command,command_table[i].source,command_table[i].min_params); } WriteServ(user->fd,"903 %s :End of COMMANDS list"); } |