diff options
Diffstat (limited to 'include/commands/cmd_kline.h')
-rw-r--r-- | include/commands/cmd_kline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/commands/cmd_kline.h b/include/commands/cmd_kline.h index 3ce7d34e5..edaa8a8bc 100644 --- a/include/commands/cmd_kline.h +++ b/include/commands/cmd_kline.h @@ -24,12 +24,12 @@ * the same way, however, they can be fully unloaded, where these * may not. */ -class cmd_kline : public command_t +class cmd_kline : public Command { public: /** Constructor for kline. */ - cmd_kline (InspIRCd* Instance) : command_t(Instance,"KLINE",'o',1) { syntax = "<ident@host> [<duration> :<reason>]"; } + cmd_kline (InspIRCd* Instance) : Command(Instance,"KLINE",'o',1) { syntax = "<ident@host> [<duration> :<reason>]"; } /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command |