From 086ee798e4e9579e4ebed5f61e7e903b40d14ebc Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Sat, 15 Sep 2018 14:08:51 +0200 Subject: [PATCH 1/3] This will be my last oof --- commands/owner/ded.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/owner/ded.js b/commands/owner/ded.js index f5afc284..d6f320da 100644 --- a/commands/owner/ded.js +++ b/commands/owner/ded.js @@ -12,6 +12,6 @@ module.exports = class DedCommand extends Command { } async run(message) { - await message.say('im dead now k bye thx'); + await message.say('https://i.redd.it/lw8hrvr0l4f11.jpg'); process.exit(); }} \ No newline at end of file From 60a9ca3d61c7d4f9047ca6f3286b565934f95d31 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Sun, 16 Sep 2018 03:23:13 +0200 Subject: [PATCH 2/3] Fixed kick --- commands/admin/kick.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/admin/kick.js b/commands/admin/kick.js index 3e329482..b6bc805f 100644 --- a/commands/admin/kick.js +++ b/commands/admin/kick.js @@ -21,7 +21,7 @@ module.exports = class KickCommand extends Command { async run(message) { const member = message.mentions.members.first(); - member.kick(reason.join(" ")).then(member => { + member.kick().then(member => { message.reply(`${member.user.username} was succesfully kicked.`); }); } From d2ef558a067d8c118a297123a5365d998090b1c8 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Sun, 16 Sep 2018 03:23:26 +0200 Subject: [PATCH 3/3] fixed ban --- commands/admin/ban.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/admin/ban.js b/commands/admin/ban.js index fa3c7c10..59c259d1 100644 --- a/commands/admin/ban.js +++ b/commands/admin/ban.js @@ -21,7 +21,7 @@ module.exports = class BanCommand extends Command { async run(message) { const member = message.mentions.members.first(); - member.ban(reason.join(" ")).then(member => { + member.ban().then(member => { message.reply(`${member.user.username} was succesfully banned.`); }); }