diff options
Diffstat (limited to 'include/commands/cmd_ping.h')
-rw-r--r-- | include/commands/cmd_ping.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands/cmd_ping.h b/include/commands/cmd_ping.h index c131af628..7afabc816 100644 --- a/include/commands/cmd_ping.h +++ b/include/commands/cmd_ping.h @@ -31,7 +31,7 @@ class cmd_ping : public command_t { public: - cmd_ping () : command_t("PING",0,1) { syntax = "<servername> [:<servername>]"; } + cmd_ping (InspIRCd* Instance) : command_t(Instance,"PING",0,1) { syntax = "<servername> [:<servername>]"; } void Handle(const char** parameters, int pcnt, userrec *user); }; |