summaryrefslogtreecommitdiff
path: root/modules/commands/cs_xop.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-04-12 02:48:24 -0500
committerAdam <Adam@anope.org>2013-04-12 02:48:24 -0500
commitaa2844a3fcb825c99836bf4457c5517e11e1af73 (patch)
tree778a18d7a647ddf8729fb7543cd3f2af52120812 /modules/commands/cs_xop.cpp
parent42c640a9b5fc9d9e89f00b7f69a52052a0666432 (diff)
Fix not attaching cs_xop to I_OnReload
Diffstat (limited to 'modules/commands/cs_xop.cpp')
-rw-r--r--modules/commands/cs_xop.cpp3
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