summaryrefslogtreecommitdiff
path: root/src/modules/m_spy.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-03 21:22:10 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-03 21:22:10 +0000
commit31e2d052252c4113ae9ea63844f60df7759a03be (patch)
tree65a54f979ef8e40e16cf3e42d6d19f9f0896ce3e /src/modules/m_spy.cpp
parenta41cd7a0c2e7b26238b9097966535366eab54698 (diff)
Add VF_COMMON to a lot modules which require it. Reported by danielg in bug #369 and bug #370. Thanks, and sorry for the delay. Also fix one or two erroneous CMD_FAILURE that are more understandable as CMD_LOCALONLY. :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7641 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spy.cpp')
-rw-r--r--src/modules/m_spy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spy.cpp b/src/modules/m_spy.cpp
index 20b59977c..b33a0ba54 100644
--- a/src/modules/m_spy.cpp
+++ b/src/modules/m_spy.cpp
@@ -93,7 +93,7 @@ class cmd_spylist : public command_t
user->WriteServ("323 %s :End of channel list.",user->nick);
/* Dont send out across the network */
- return CMD_FAILURE;
+ return CMD_LOCALONLY;
}
};
@@ -132,7 +132,7 @@ class cmd_spynames : public command_t
user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[0]);
}
- return CMD_FAILURE;
+ return CMD_LOCALONLY;
}
};