diff options
| author | 2009-11-21 21:47:04 +0000 | |
|---|---|---|
| committer | 2009-11-21 21:47:04 +0000 | |
| commit | a42a8ea3416114d7a3a33a75aa1707f326506cc8 (patch) | |
| tree | 5f6de2752bc43e35d9266280bcd07713e6fb0ecb /src/modules/m_invisible.cpp | |
| parent | Don't tell the user they are banned and then still let them join if they have... (diff) | |
Delete modewatchers when unloading modules that use them to keep the server from crashing when the mode is used again
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12168 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_invisible.cpp')
| -rw-r--r-- | src/modules/m_invisible.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_invisible.cpp b/src/modules/m_invisible.cpp index cc2080f7f..b4a036d43 100644 --- a/src/modules/m_invisible.cpp +++ b/src/modules/m_invisible.cpp @@ -123,6 +123,9 @@ class ModuleInvisible : public Module ~ModuleInvisible() { + /* XXX is this the best place to do this? */ + if (!ServerInstance->Modes->DelModeWatcher(&ido)) + ServerInstance->Logs->Log("m_banredirect.so", DEBUG, "Failed to delete modewatcher!"); }; Version GetVersion(); |
