summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_chanfilter.cpp4
-rw-r--r--src/modules/m_chanprotect.cpp6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/m_chanfilter.cpp b/src/modules/m_chanfilter.cpp
index 9f1722b8d..3db636b35 100644
--- a/src/modules/m_chanfilter.cpp
+++ b/src/modules/m_chanfilter.cpp
@@ -208,7 +208,7 @@ class ModuleChanFilter : public Module
return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
}
- virtual string_list OnChannelSync(chanrec* chan)
+ virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque)
{
SpamList* spamlist = (SpamList*)chan->GetExt("spam_list");
string_list commands;
@@ -216,7 +216,7 @@ class ModuleChanFilter : public Module
{
for (SpamList::iterator i = spamlist->begin(); i != spamlist->end(); i++)
{
- commands.push_back("M "+std::string(chan->name)+" +g "+*i);
+ proto->ProtoSendMode(opaque,TYPE_CHANNEL,chan,"+g "+*i);
}
}
return commands;
diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp
index 0938dacb0..325a50a13 100644
--- a/src/modules/m_chanprotect.cpp
+++ b/src/modules/m_chanprotect.cpp
@@ -335,7 +335,7 @@ class ModuleChanProtect : public Module
return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
}
- virtual string_list OnChannelSync(chanrec* chan)
+ virtual void OnChannelSync(chanrec* chan, Module* proto, void* opaque)
{
// this is called when the server is linking into a net and wants to sync channel data.
// we should send our mode changes for the channel here to ensure that other servers
@@ -346,11 +346,11 @@ class ModuleChanProtect : public Module
{
if (cl[i]->GetExt("cm_founder_"+std::string(chan->name)))
{
- commands.push_back("M "+std::string(chan->name)+" +q "+std::string(cl[i]->nick));
+ proto->ProtoSendMode(opaque,TYPE_CHANNEL,chan,"+q "+std::string(cl[i]->nick));
}
if (cl[i]->GetExt("cm_protect_"+std::string(chan->name)))
{
- commands.push_back("M "+std::string(chan->name)+" +a "+std::string(cl[i]->nick));
+ proto->ProtoSendMode(opaque,TYPE_CHANNEL,chan,"+a "+std::string(cl[i]->nick));
}
}
return commands;