summaryrefslogtreecommitdiff
path: root/src/modules/m_watch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_watch.cpp')
-rw-r--r--src/modules/m_watch.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp
index 4012f358c..a2a458c33 100644
--- a/src/modules/m_watch.cpp
+++ b/src/modules/m_watch.cpp
@@ -377,10 +377,14 @@ class Modulewatch : public Module
public:
Modulewatch()
- : maxwatch(32), cmdw(this, maxwatch), sw(this)
+ : maxwatch(32), cmdw(this, maxwatch), sw(this)
{
- OnRehash(NULL);
whos_watching_me = new watchentries();
+ }
+
+ void init()
+ {
+ OnRehash(NULL);
ServerInstance->AddCommand(&cmdw);
ServerInstance->AddCommand(&sw);
ServerInstance->Extensions.Register(&cmdw.ext);