diff options
Diffstat (limited to 'src/cmd_join.cpp')
-rw-r--r-- | src/cmd_join.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_join.cpp b/src/cmd_join.cpp index 0c5c3f157..b5359397d 100644 --- a/src/cmd_join.cpp +++ b/src/cmd_join.cpp @@ -16,12 +16,12 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance) { - return new cmd_join(Instance); + return new CommandJoin(Instance); } /** Handle /JOIN */ -CmdResult cmd_join::Handle (const char** parameters, int pcnt, User *user) +CmdResult CommandJoin::Handle (const char** parameters, int pcnt, User *user) { if (pcnt > 1) { |