diff options
| author | 2007-05-08 16:16:25 +0000 | |
|---|---|---|
| committer | 2007-05-08 16:16:25 +0000 | |
| commit | e295d91ffd44876a9ae5279269d5a4ca4e15afcc (patch) | |
| tree | b7564d2fa09b9f24562447d7ddd2b8d273faf369 /src/modules/m_operjoin.cpp | |
| parent | We're setting chanrec::creation in here and not chanrec::age, this can and wi... (diff) | |
Make SAJOIN/SAPART more spanningtree friendly, they are throwbacks to the inspircd 1.0 alpha days :S
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6911 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_operjoin.cpp')
| -rw-r--r-- | src/modules/m_operjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp index 4308068e3..518eeb009 100644 --- a/src/modules/m_operjoin.cpp +++ b/src/modules/m_operjoin.cpp @@ -89,7 +89,7 @@ class ModuleOperjoin : public Module for(std::vector<std::string>::iterator it = operChans.begin(); it != operChans.end(); it++) if (ServerInstance->IsChannel(it->c_str())) - chanrec::JoinUser(ServerInstance, user, it->c_str(), false, ""); + chanrec::JoinUser(ServerInstance, user, it->c_str(), false, "", ServerInstance->Time(true)); } }; |
