replace say with send
This commit is contained in:
parent
a99ad3b83d
commit
9687948972
1 changed files with 2 additions and 2 deletions
|
@ -39,9 +39,9 @@ class KickCommand extends Command {
|
|||
let reasons = args.reasons;
|
||||
|
||||
if(member === this.client.user)
|
||||
return message.channel.say('Cant kick me fool');
|
||||
return message.channel.send('Cant kick me fool');
|
||||
if(member.id === message.author.id)
|
||||
return message.channel.say('Why would you kick yourself ?');
|
||||
return message.channel.send('Why would you kick yourself ?');
|
||||
if(!reasons)
|
||||
reasons = 'Nothing have been specified.';
|
||||
|
||||
|
|
Loading…
Reference in a new issue