diff options
| author | 2007-05-07 15:49:57 +0000 | |
|---|---|---|
| committer | 2007-05-07 15:49:57 +0000 | |
| commit | 02c114d8361b88ce3824bbee8114ba450b203b56 (patch) | |
| tree | 2d4fa139e3e9e3f9ed3cf02318626dc01788f38a /src/modules/m_spanningtree/treesocket1.cpp | |
| parent | Developers, please review ForceJoin starting at line 730 of this file. It nee... (diff) | |
| download | inspircd++-02c114d8361b88ce3824bbee8114ba450b203b56.tar.gz inspircd++-02c114d8361b88ce3824bbee8114ba450b203b56.tar.bz2 inspircd++-02c114d8361b88ce3824bbee8114ba450b203b56.zip | |
Fix channel TS not being set correctly on creation of new channel
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6904 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/treesocket1.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/treesocket1.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modules/m_spanningtree/treesocket1.cpp b/src/modules/m_spanningtree/treesocket1.cpp index 1b662a269..b2e687b2c 100644 --- a/src/modules/m_spanningtree/treesocket1.cpp +++ b/src/modules/m_spanningtree/treesocket1.cpp @@ -851,10 +851,7 @@ bool TreeSocket::ForceJoin(const std::string &source, std::deque<std::string> &p for (std::string::iterator x = modes.begin(); x != modes.end(); ++x) modestack.Push(*x, who->nick); - if (created) - chanrec::JoinUser(this->Instance, who, channel.c_str(), true, "", TS); - else - chanrec::JoinUser(this->Instance, who, channel.c_str(), true, ""); + chanrec::JoinUser(this->Instance, who, channel.c_str(), true, "", TS); } else { |
