From: brain Date: Fri, 6 May 2005 18:12:53 +0000 (+0000) Subject: Fixed services not being informed of force joins X-Git-Tag: v2.0.23~10363 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=74618388a647fe19bea520c221b5c1fa86c62bca;p=user%2Fhenk%2Fcode%2Finspircd.git Fixed services not being informed of force joins git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1319 e03df62e-2008-0410-955e-edbf42e46eb7 --- 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)