diff options
Diffstat (limited to 'src/cmd_pong.cpp')
-rw-r--r-- | src/cmd_pong.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_pong.cpp b/src/cmd_pong.cpp index aca317078..e1927deab 100644 --- a/src/cmd_pong.cpp +++ b/src/cmd_pong.cpp @@ -16,10 +16,10 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance) { - return new cmd_pong(Instance); + return new CommandPong(Instance); } -CmdResult cmd_pong::Handle (const char** parameters, int pcnt, User *user) +CmdResult CommandPong::Handle (const char** parameters, int pcnt, User *user) { // set the user as alive so they survive to next ping user->lastping = 1; |