diff options
Diffstat (limited to 'modules/core/cs_set_secure.cpp')
-rw-r--r-- | modules/core/cs_set_secure.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_set_secure.cpp b/modules/core/cs_set_secure.cpp index ac8aea3d1..4f6dd7271 100644 --- a/modules/core/cs_set_secure.cpp +++ b/modules/core/cs_set_secure.cpp @@ -91,11 +91,11 @@ class CSSetSecure : public Module Command *c = FindCommand(ChanServ, "SET"); if (c) - c->AddSubcommand(&commandcssetsecure); + c->AddSubcommand(this, &commandcssetsecure); c = FindCommand(ChanServ, "SASET"); if (c) - c->AddSubcommand(&commandcssasetsecure); + c->AddSubcommand(this, &commandcssasetsecure); } ~CSSetSecure() |