summaryrefslogtreecommitdiff
path: root/src/core/cs_identify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/cs_identify.c')
-rw-r--r--src/core/cs_identify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/cs_identify.c b/src/core/cs_identify.c
index 51ff9568b..8af3d4bd7 100644
--- a/src/core/cs_identify.c
+++ b/src/core/cs_identify.c
@@ -30,10 +30,10 @@ class CSIdentify : public Module
this->SetType(CORE);
c = createCommand("IDENTIFY", do_identify, NULL, CHAN_HELP_IDENTIFY, -1, -1, -1, -1);
- moduleAddCommand(CHANSERV, c, MOD_UNIQUE);
+ this->AddCommand(CHANSERV, c, MOD_UNIQUE);
c = createCommand("ID", do_identify, NULL, CHAN_HELP_IDENTIFY, -1, -1, -1, -1);
- moduleAddCommand(CHANSERV, c, MOD_UNIQUE);
+ this->AddCommand(CHANSERV, c, MOD_UNIQUE);
moduleSetChanHelp(myChanServHelp);
}