diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-03-18 16:52:56 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-03-18 16:52:56 +0000 |
commit | 0f6de0b18372a76ebb5d6c4ba3dc9a7a7e0a7297 (patch) | |
tree | b16e5eb6b4d97bca39472ffea21d412c13ad71e2 /src/modules/m_conn_join.cpp | |
parent | 3699bdaee53896b491256d3aa694ef20cbdb0743 (diff) |
set the TS of a channel in JoinUser, not after the entire FJOIN, this is safer and may fix the odd desync here and there
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6690 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_conn_join.cpp')
-rw-r--r-- | src/modules/m_conn_join.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_conn_join.cpp b/src/modules/m_conn_join.cpp index 9a7fdca7a..75415d6a5 100644 --- a/src/modules/m_conn_join.cpp +++ b/src/modules/m_conn_join.cpp @@ -88,7 +88,7 @@ class ModuleConnJoin : public Module for(std::vector<std::string>::iterator it = Joinchans.begin(); it != Joinchans.end(); it++) if (ServerInstance->IsChannel(it->c_str())) - chanrec::JoinUser(ServerInstance, user, it->c_str(), false); + chanrec::JoinUser(ServerInstance, user, it->c_str(), false, ""); } }; |