diff options
| author | 2013-04-11 15:11:31 -0700 | |
|---|---|---|
| committer | 2013-04-11 15:11:31 -0700 | |
| commit | 1858feabd342636df0b52780c978979b4e049fc3 (patch) | |
| tree | c00ab92b6ff6d002e6c40909587b146ba5e45612 /src/modules.cpp | |
| parent | Fix clang warning about IsOper() (diff) | |
| parent | Convert ISUPPORT to use a map instead of a string. (diff) | |
| download | inspircd++-1858feabd342636df0b52780c978979b4e049fc3.tar.gz inspircd++-1858feabd342636df0b52780c978979b4e049fc3.tar.bz2 inspircd++-1858feabd342636df0b52780c978979b4e049fc3.zip | |
Merge pull request #487 from SaberUK/master+better-isupport-api
Convert ISUPPORT to use a map instead of a string.
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 1d91bb006..767322fc9 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -109,7 +109,7 @@ ModResult Module::OnUserPreNotice(User*, void*, int, std::string&, char, CUList& ModResult Module::OnUserPreNick(User*, const std::string&) { return MOD_RES_PASSTHRU; } void Module::OnUserPostNick(User*, const std::string&) { } ModResult Module::OnPreMode(User*, User*, Channel*, const std::vector<std::string>&) { return MOD_RES_PASSTHRU; } -void Module::On005Numeric(std::string&) { } +void Module::On005Numeric(std::map<std::string, std::string>&) { } ModResult Module::OnKill(User*, User*, const std::string&) { return MOD_RES_PASSTHRU; } void Module::OnLoadModule(Module*) { } void Module::OnUnloadModule(Module*) { } @@ -397,7 +397,7 @@ void ModuleManager::DoSafeUnload(Module* mod) ServerInstance->Logs->Log("MODULE", DEFAULT,"Module %s unloaded",mod->ModuleSourceFile.c_str()); this->ModCount--; - ServerInstance->BuildISupport(); + ServerInstance->ISupport.Build(); } void ModuleManager::UnloadAll() |
