diff options
Diffstat (limited to 'modules/core/cs_status.cpp')
-rw-r--r-- | modules/core/cs_status.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/core/cs_status.cpp b/modules/core/cs_status.cpp index d45c09ab8..0ff2db90a 100644 --- a/modules/core/cs_status.cpp +++ b/modules/core/cs_status.cpp @@ -12,6 +12,7 @@ /*************************************************************************/ #include "module.h" +#include "chanserv.h" class CommandCSStatus : public Command { @@ -66,7 +67,7 @@ class CSStatus : public Module this->SetAuthor("Anope"); this->SetType(CORE); - this->AddCommand(ChanServ, &commandcsstatus); + this->AddCommand(chanserv->Bot(), &commandcsstatus); } }; |