diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_samode.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_spanningtree.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_samode.cpp b/src/modules/m_samode.cpp index 6e776e7c0..97b84efd6 100644 --- a/src/modules/m_samode.cpp +++ b/src/modules/m_samode.cpp @@ -75,7 +75,7 @@ class cmd_samode : public command_t n.clear(); n.push_back(std::string(user->nick) + " used SAMODE: " + ServerInstance->Modes->GetLastParse()); Event rmode2((char *)&n, NULL, "send_opers"); - rmode.Send(ServerInstance); + rmode2.Send(ServerInstance); /* XXX: Yes, this is right. We dont want to propogate the * actual SAMODE command, just the MODE command generated diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index a622c2624..099d06f77 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -5173,6 +5173,7 @@ class ModuleSpanningTree : public Module { if (params->size() < 2) return; + (*params)[0] = ":" + (*params)[0]; Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODE",*params); } else if (event->GetEventID() == "send_opers") |