summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-09 13:46:42 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-09 13:46:42 +0000
commit237766c84573c4a5439382fe6ba2afc026a18e09 (patch)
treed79f214bfe5bee2a9576b912c228bae18bf5aa80 /src/inspircd.cpp
parent4754d3371f209ce31ca417a8c557e29805d3cc49 (diff)
Added support for /NAMES with no parameters (just gives a hardcoded response anyway, who thinks up this shit)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1023 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index e001406b9..eb014f611 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -3080,7 +3080,7 @@ void SetupCommandTable(void)
createcommand("WALLOPS",handle_wallops,'o',1,"<core>");
createcommand("NOTICE",handle_notice,0,2,"<core>");
createcommand("JOIN",handle_join,0,1,"<core>");
- createcommand("NAMES",handle_names,0,1,"<core>");
+ createcommand("NAMES",handle_names,0,0,"<core>");
createcommand("PART",handle_part,0,1,"<core>");
createcommand("KICK",handle_kick,0,2,"<core>");
createcommand("MODE",handle_mode,0,1,"<core>");