summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-27 21:22:27 +0000
committerspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-27 21:22:27 +0000
commita753cc1ec3af9c2d6095f313c233050585f96f98 (patch)
treec7a62fe41f715cb28af46056d4b66fa76f2b65ab /src/modules
parentdcb743d8df1ff549a104932e0dbbd9b2e4d04400 (diff)
Fixed /spynames, thanks to relax for finding the bug
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5353 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spy.cpp b/src/modules/m_spy.cpp
index 6e1897aa2..1698b16e2 100644
--- a/src/modules/m_spy.cpp
+++ b/src/modules/m_spy.cpp
@@ -107,7 +107,7 @@ class cmd_spynames : public command_t
return CMD_FAILURE;
}
- if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 1))
+ if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
return CMD_FAILURE;
c = ServerInstance->FindChan(parameters[0]);