diff options
| author | 2007-01-06 22:57:40 +0000 | |
|---|---|---|
| committer | 2007-01-06 22:57:40 +0000 | |
| commit | 41f946c9d05a790a57bbc5ffc2f04c4a8be9a17b (patch) | |
| tree | 0edcfbd64419b19663ec3a11287aadf52927d92b /src/modules/m_spanningtree.cpp | |
| parent | Fix modecount on remote NICK (diff) | |
| download | inspircd++-41f946c9d05a790a57bbc5ffc2f04c4a8be9a17b.tar.gz inspircd++-41f946c9d05a790a57bbc5ffc2f04c4a8be9a17b.tar.bz2 inspircd++-41f946c9d05a790a57bbc5ffc2f04c4a8be9a17b.zip | |
Fix remote opers not being added to all_opers.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6238 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
| -rw-r--r-- | src/modules/m_spanningtree.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 0bf0289ad..623a62622 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -2367,6 +2367,7 @@ class TreeSocket : public InspSocket if (u) { u->modes[UM_OPERATOR] = 1; + this->Instance->all_opers.push_back(u); strlcpy(u->oper,opertype.c_str(),NICKMAX-1); Utils->DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server); this->Instance->SNO->WriteToSnoMask('o',"From %s: User %s (%s@%s) is now an IRC operator of type %s",u->server, u->nick,u->ident,u->host,irc::Spacify(opertype.c_str())); |
