diff options
Diffstat (limited to 'modules/core/ns_set_kill.cpp')
-rw-r--r-- | modules/core/ns_set_kill.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/ns_set_kill.cpp b/modules/core/ns_set_kill.cpp index 20755f72e..90015d680 100644 --- a/modules/core/ns_set_kill.cpp +++ b/modules/core/ns_set_kill.cpp @@ -123,11 +123,11 @@ class NSSetKill : public Module Command *c = FindCommand(NickServ, "SET"); if (c) - c->AddSubcommand(&commandnssetkill); + c->AddSubcommand(this, &commandnssetkill); c = FindCommand(NickServ, "SASET"); if (c) - c->AddSubcommand(&commandnssasetkill); + c->AddSubcommand(this, &commandnssasetkill); } ~NSSetKill() |