diff options
| author | 2008-01-17 23:40:18 +0000 | |
|---|---|---|
| committer | 2008-01-17 23:40:18 +0000 | |
| commit | ece985ccb3210a132d67381511642edfb359f5c4 (patch) | |
| tree | ae9e6955ecd039231eaa8d19634bb58732f81c41 /src/modules/m_invisible.cpp | |
| parent | Aquanight's configure strict/fatal warnings patch (diff) | |
| download | inspircd++-ece985ccb3210a132d67381511642edfb359f5c4.tar.gz inspircd++-ece985ccb3210a132d67381511642edfb359f5c4.tar.bz2 inspircd++-ece985ccb3210a132d67381511642edfb359f5c4.zip | |
Remove a redundant method here, call the mode manager directly
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8732 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_invisible.cpp')
| -rw-r--r-- | src/modules/m_invisible.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_invisible.cpp b/src/modules/m_invisible.cpp index 03fdee091..30935c1dd 100644 --- a/src/modules/m_invisible.cpp +++ b/src/modules/m_invisible.cpp @@ -159,10 +159,10 @@ class ModuleInvisible : public Module { conf = new ConfigReader(ServerInstance); qm = new InvisibleMode(ServerInstance); - if (!ServerInstance->AddMode(qm)) + if (!ServerInstance->Modes->AddMode(qm)) throw ModuleException("Could not add new modes!"); ido = new InvisibleDeOper(ServerInstance); - if (!ServerInstance->AddModeWatcher(ido)) + if (!ServerInstance->Modes->AddModeWatcher(ido)) throw ModuleException("Could not add new mode watcher on usermode +o!"); /* Yeah i know people can take this out. I'm not about to obfuscate code just to be a pain in the ass. */ |
