diff options
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 93996bcdb..a622c2624 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -3402,6 +3402,18 @@ class TreeSocket : public InspSocket } return true; } + else if (command == "OPERNOTICE") + { + std::string sourceserv = this->myhost; + + if (this->InboundServerName != "") + sourceserv = this->InboundServerName; + + if (params.size() >= 1) + Instance->WriteOpers("*** From " + sourceserv + ": " + params[1]); + + return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params); + } else if (command == "ENDBURST") { this->bursting = false; @@ -5161,9 +5173,14 @@ class ModuleSpanningTree : public Module { if (params->size() < 2) return; - // Insert the TS value of the object, either userrec or chanrec Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODE",*params); } + else if (event->GetEventID() == "send_opers") + { + if (params->size() < 1) + return; + Utils->DoOneToMany(ServerInstance->Config->ServerName,"OPERNOTICE",*params); + } else if (event->GetEventID() == "send_push") { if (params->size() < 2) |