diff options
-rw-r--r-- | modules/commands/cs_entrymsg.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/commands/cs_entrymsg.cpp b/modules/commands/cs_entrymsg.cpp index b4aaf805a..a514365fe 100644 --- a/modules/commands/cs_entrymsg.cpp +++ b/modules/commands/cs_entrymsg.cpp @@ -208,6 +208,9 @@ class CSEntryMessage : public Module { this->SetAuthor("Anope"); + Implementation i[] = { I_OnReload, I_OnJoinChannel };
+ ModuleManager::Attach(i, this, sizeof(i) / sizeof(Implementation)); + this->OnReload(); } |