diff options
Diffstat (limited to 'modules/core/cs_set_xop.cpp')
-rw-r--r-- | modules/core/cs_set_xop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_set_xop.cpp b/modules/core/cs_set_xop.cpp index 294c8363c..bf6e7c302 100644 --- a/modules/core/cs_set_xop.cpp +++ b/modules/core/cs_set_xop.cpp @@ -131,11 +131,11 @@ class CSSetXOP : public Module Command *c = FindCommand(ChanServ, "SET"); if (c) - c->AddSubcommand(&commandcssetxop); + c->AddSubcommand(this, &commandcssetxop); c = FindCommand(ChanServ, "SASET"); if (c) - c->AddSubcommand(&commandcssasetxop); + c->AddSubcommand(this, &commandcssasetxop); } ~CSSetXOP() |