aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree/main.cpp
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-02-09 15:14:57 -0600
committerGravatar Daniel De Graaf2010-08-03 17:32:35 -0400
commit0d67e5e75b37d4764eba2e4e026d62dcefeccad3 (patch)
tree2426ea571d83cd0c9e05228b0d45964312fac551 /src/modules/m_spanningtree/main.cpp
parentFixes from characterless mode test (diff)
Remove duplicate mode sending on processed modes
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
-rw-r--r--src/modules/m_spanningtree/main.cpp36
1 files changed, 1 insertions, 35 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index c6ea6781e..50d088319 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -67,7 +67,7 @@ void ModuleSpanningTree::init()
I_OnWallops, I_OnUserNotice, I_OnUserMessage, I_OnBackgroundTimer, I_OnUserJoin,
I_OnChangeHost, I_OnChangeName, I_OnChangeIdent, I_OnUserPart, I_OnUnloadModule,
I_OnUserQuit, I_OnUserPostNick, I_OnUserKick, I_OnRemoteKill, I_OnRehash, I_OnPreRehash,
- I_OnOper, I_OnAddLine, I_OnDelLine, I_OnMode, I_OnLoadModule, I_OnStats,
+ I_OnOper, I_OnAddLine, I_OnDelLine, I_OnLoadModule, I_OnStats,
I_OnSetAway, I_OnPostCommand, I_OnUserConnect, I_OnAcceptConnection
};
ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
@@ -850,40 +850,6 @@ void ModuleSpanningTree::OnDelLine(User* user, XLine *x)
}
}
-void ModuleSpanningTree::OnMode(User* user, Extensible* dest, const irc::modestacker& modesc)
-{
- irc::modestacker modes(modesc);
- if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
- {
- parameterlist params;
- int id;
- std::string command;
-
- User* u = dynamic_cast<User*>(dest);
- if (u)
- {
- params.push_back(u->uuid);
- id = 1;
- command = "MODE";
- }
- else
- {
- Channel* c = (Channel*)dest;
- params.push_back(c->name);
- params.push_back(ConvToStr(c->age));
- id = 2;
- command = "FMODE";
- }
- params.push_back("");
-
- while (!modes.empty())
- {
- params[id] = modes.popModeLine(true);
- Utils->DoOneToMany(user->uuid, command, params);
- }
- }
-}
-
ModResult ModuleSpanningTree::OnSetAway(User* user, const std::string &awaymsg)
{
if (IS_LOCAL(user))