mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
Remove empty permanent channels when m_permchannels is unloaded
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11624 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
94bb5343b1
commit
77ead8fe33
@ -93,6 +93,25 @@ public:
|
||||
virtual ~ModulePermanentChannels()
|
||||
{
|
||||
ServerInstance->Modes->DelMode(&p);
|
||||
/*
|
||||
* DelMode can't remove the +P mode on empty channels, or it will break
|
||||
* merging modes with remote servers. Remove the empty channels now as
|
||||
* we know this is not the case.
|
||||
*/
|
||||
chan_hash::iterator iter = ServerInstance->chanlist->begin();
|
||||
while (iter != ServerInstance->chanlist->end())
|
||||
{
|
||||
Channel* c = iter->second;
|
||||
if (c->GetUserCounter() == 0)
|
||||
{
|
||||
chan_hash::iterator at = iter;
|
||||
iter++;
|
||||
ServerInstance->chanlist->erase(at);
|
||||
delete c;
|
||||
}
|
||||
else
|
||||
iter++;
|
||||
}
|
||||
}
|
||||
|
||||
virtual void OnRehash(User *user)
|
||||
|
Loading…
x
Reference in New Issue
Block a user