diff options
Diffstat (limited to 'src/modules/m_delayjoin.cpp')
-rw-r--r-- | src/modules/m_delayjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_delayjoin.cpp b/src/modules/m_delayjoin.cpp index d5af7fdfb..1077e65a7 100644 --- a/src/modules/m_delayjoin.cpp +++ b/src/modules/m_delayjoin.cpp @@ -65,7 +65,7 @@ class ModuleDelayJoin : public Module : Module(Me) { djm = new DelayJoinMode(ServerInstance, this); - if (!ServerInstance->AddMode(djm)) + if (!ServerInstance->Modes->AddMode(djm)) throw ModuleException("Could not add new modes!"); Implementation eventlist[] = { I_OnUserJoin, I_OnUserPart, I_OnUserKick, I_OnUserQuit, I_OnUserList, I_OnText }; ServerInstance->Modules->Attach(eventlist, this, 6); |