From 9687948972fbd8f8443aff16c5dc782089d8124d Mon Sep 17 00:00:00 2001 From: loicbersier Date: Thu, 19 Mar 2020 17:02:57 +0100 Subject: [PATCH] replace say with send --- commands/admin/kick.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/admin/kick.js b/commands/admin/kick.js index c1a39033..022e2d38 100644 --- a/commands/admin/kick.js +++ b/commands/admin/kick.js @@ -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.';