diff options
Diffstat (limited to 'include/commands/cmd_kick.h')
-rw-r--r-- | include/commands/cmd_kick.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/commands/cmd_kick.h b/include/commands/cmd_kick.h index 769ab316e..600c79396 100644 --- a/include/commands/cmd_kick.h +++ b/include/commands/cmd_kick.h @@ -24,12 +24,12 @@ * the same way, however, they can be fully unloaded, where these * may not. */ -class cmd_kick : public Command +class CommandKick : public Command { public: /** Constructor for kick. */ - cmd_kick (InspIRCd* Instance) : Command(Instance,"KICK",0,2) { syntax = "<channel> <nick>{,<nick>} [<reason>]"; } + CommandKick (InspIRCd* Instance) : Command(Instance,"KICK",0,2) { syntax = "<channel> <nick>{,<nick>} [<reason>]"; } /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command |