diff options
Diffstat (limited to 'src/cmd_lusers.cpp')
-rw-r--r-- | src/cmd_lusers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_lusers.cpp b/src/cmd_lusers.cpp index 1ea6f2f42..04f2906ac 100644 --- a/src/cmd_lusers.cpp +++ b/src/cmd_lusers.cpp @@ -16,12 +16,12 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance) { - return new cmd_lusers(Instance); + return new CommandLusers(Instance); } /** Handle /LUSERS */ -CmdResult cmd_lusers::Handle (const char** parameters, int pcnt, User *user) +CmdResult CommandLusers::Handle (const char** parameters, int pcnt, User *user) { // this lusers command shows one server at all times because // a protocol module must override it to show those stats. |