diff options
| author | 2007-10-23 20:47:06 +0000 | |
|---|---|---|
| committer | 2007-10-23 20:47:06 +0000 | |
| commit | 0e7fabc4b1dc907dfe9be70d5cf03be3ec03f5aa (patch) | |
| tree | 9f54575ff49c06ebe70e73ff890bb7d715e4961d /src/modules/m_botmode.cpp | |
| parent | All the core is now pedantic safe! (diff) | |
Some AddMode fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8320 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_botmode.cpp')
| -rw-r--r-- | src/modules/m_botmode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp index b055c83ee..18a594c31 100644 --- a/src/modules/m_botmode.cpp +++ b/src/modules/m_botmode.cpp @@ -55,7 +55,7 @@ class ModuleBotMode : public Module { bm = new BotMode(ServerInstance); - if (!ServerInstance->AddMode(bm, 'B')) + if (!ServerInstance->AddMode(bm)) throw ModuleException("Could not add new modes!"); } |
