diff options
| author | 2009-05-24 02:53:45 +0000 | |
|---|---|---|
| committer | 2009-05-24 02:53:45 +0000 | |
| commit | 0da6b3a13def40e8fd002b9fc60f955467f6372d (patch) | |
| tree | d4aa39ece30255afe7447fb46f39c45c39d679a3 /src/modules/m_remove.cpp | |
| parent | m_dnsbl: Add default duration and error message on invalid duration (diff) | |
| download | inspircd++-0da6b3a13def40e8fd002b9fc60f955467f6372d.tar.gz inspircd++-0da6b3a13def40e8fd002b9fc60f955467f6372d.tar.bz2 inspircd++-0da6b3a13def40e8fd002b9fc60f955467f6372d.zip | |
OnRehash changes: split to multiple hooks to clarify use and prevent explosion of rehashes on a /REHASH *
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11388 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 573567c94..6e5eaae46 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -251,7 +251,7 @@ class ModuleRemove : public Module mycommand2 = new CommandFpart(ServerInstance, supportnokicks); ServerInstance->AddCommand(mycommand); ServerInstance->AddCommand(mycommand2); - OnRehash(NULL,""); + OnRehash(NULL); Implementation eventlist[] = { I_On005Numeric, I_OnRehash }; ServerInstance->Modules->Attach(eventlist, this, 2); } @@ -262,7 +262,7 @@ class ModuleRemove : public Module output.append(" REMOVE"); } - virtual void OnRehash(User* user, const std::string&) + virtual void OnRehash(User* user) { ConfigReader conf(ServerInstance); supportnokicks = conf.ReadFlag("remove", "supportnokicks", 0); |
