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.`); }); } 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.`); }); } 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