diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-08 16:01:36 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-08 16:01:36 +0000 |
commit | dc7927e17cffb2ee3c50ef9f037ed873d378f679 (patch) | |
tree | f1611bbe9cd3ed1d669556af4b090de617059dbd /src/modules/m_sanick.cpp | |
parent | c8bca463cdd32c1b18a8f12cb9abc4a5d1717fee (diff) |
Made SANICK not collide the user (theres no need to in the new 1.1 now we have return values- there USED TO BE a need for it)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5167 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sanick.cpp')
-rw-r--r-- | src/modules/m_sanick.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/modules/m_sanick.cpp b/src/modules/m_sanick.cpp index 60e83a172..0ce9338a4 100644 --- a/src/modules/m_sanick.cpp +++ b/src/modules/m_sanick.cpp @@ -58,7 +58,6 @@ class cmd_sanick : public command_t { /* We couldnt change the nick */ ServerInstance->WriteOpers(std::string(user->nick)+" failed SANICK (from "+std::string(parameters[0])+" to "+parameters[1]+")"); - userrec::QuitUser(ServerInstance, source, "Nickname collision"); return CMD_FAILURE; } } |