diff options
Diffstat (limited to 'src/modules/m_blockcaps.cpp')
-rw-r--r-- | src/modules/m_blockcaps.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 4c1939ca5..f5bcfd585 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -34,7 +34,7 @@ public: ModuleBlockCAPS(InspIRCd* Me) : Module(Me) { - OnRehash(NULL,""); + OnRehash(NULL); bc = new BlockCaps(ServerInstance); if (!ServerInstance->Modes->AddMode(bc)) { @@ -50,7 +50,7 @@ public: ServerInstance->AddExtBanChar('B'); } - virtual void OnRehash(User* user, const std::string ¶m) + virtual void OnRehash(User* user) { ReadConf(); } |