diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-06 18:12:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-06 18:12:53 +0000 |
commit | 74618388a647fe19bea520c221b5c1fa86c62bca (patch) | |
tree | a01ca82254fd27d6f9c4587858d4e3bfd11b9239 /src/modules.cpp | |
parent | d4cd443b7e64254506ddb559276a73c54e7978b7 (diff) |
Fixed services not being informed of force joins
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1319 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 5b8d0d505..ec870cb5d 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -446,7 +446,7 @@ void Server::SendToModeMask(std::string modes, int flags, std::string text) chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) { - return add_channel(user,cname.c_str(),key.c_str(),true); + return add_channel(user,cname.c_str(),key.c_str(),false); } chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) |