summaryrefslogtreecommitdiff
path: root/include/commands/cmd_kick.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/commands/cmd_kick.h')
-rw-r--r--include/commands/cmd_kick.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands/cmd_kick.h b/include/commands/cmd_kick.h
index 097636965..e57f9f78c 100644
--- a/include/commands/cmd_kick.h
+++ b/include/commands/cmd_kick.h
@@ -31,7 +31,7 @@
class cmd_kick : public command_t
{
public:
- cmd_kick () : command_t("KICK",0,2) { syntax = "<channel> <nick>{,<nick>} [<reason>]"; }
+ cmd_kick (InspIRCd* Instance) : command_t(Instance,"KICK",0,2) { syntax = "<channel> <nick>{,<nick>} [<reason>]"; }
void Handle(const char** parameters, int pcnt, userrec *user);
};