diff options
author | Adam <Adam@anope.org> | 2013-04-12 02:48:24 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-12 02:48:24 -0500 |
commit | aa2844a3fcb825c99836bf4457c5517e11e1af73 (patch) | |
tree | 778a18d7a647ddf8729fb7543cd3f2af52120812 /modules/commands/cs_xop.cpp | |
parent | 42c640a9b5fc9d9e89f00b7f69a52052a0666432 (diff) |
Fix not attaching cs_xop to I_OnReload
Diffstat (limited to 'modules/commands/cs_xop.cpp')
-rw-r--r-- | modules/commands/cs_xop.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/commands/cs_xop.cpp b/modules/commands/cs_xop.cpp index 32253770f..8b6bc4bb7 100644 --- a/modules/commands/cs_xop.cpp +++ b/modules/commands/cs_xop.cpp @@ -543,6 +543,9 @@ class CSXOP : public Module accessprovider(this), commandcsxop(this) { this->SetPermanent(true); + + Implementation i[] = { I_OnReload }; + ModuleManager::Attach(i, this, sizeof(i) / sizeof(Implementation)); } void OnReload(ServerConfig *conf, ConfigReader &reader) anope_override |