diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-28 14:57:32 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-28 14:57:32 +0000 |
commit | 0d3590442639decab91c9f58c7bd347abb7be2e3 (patch) | |
tree | b9c6cd1ae3dfc5dfbb8a257afb07975953d42449 | |
parent | c0de6310e272b3821be326c3001bf623f8b75b9f (diff) |
Don't return CMD_SUCCESS. This command shouldn't go out on the wire.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7172 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_cycle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_cycle.cpp b/src/modules/m_cycle.cpp index 60b2b82b9..1ffc0b2e7 100644 --- a/src/modules/m_cycle.cpp +++ b/src/modules/m_cycle.cpp @@ -61,7 +61,7 @@ class cmd_cycle : public command_t chanrec::JoinUser(ServerInstance, user, parameters[0], true, "", ServerInstance->Time(true)); } - return CMD_SUCCESS; + return CMD_LOCALONLY; } else { |