From bcbacd89fee41a08378381fbd1099b38cdcc96f0 Mon Sep 17 00:00:00 2001 From: Crescent Date: Wed, 7 Jul 2021 01:39:25 -0500 Subject: [PATCH] Bonk fix --- commands/social/bonk.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/social/bonk.js b/commands/social/bonk.js index d524a29..abecb9f 100644 --- a/commands/social/bonk.js +++ b/commands/social/bonk.js @@ -39,7 +39,7 @@ module.exports = { bonk.save(); return message.channel.send(new Discord.MessageEmbed() .setAuthor(`${message.guild ? message.member.displayName : message.author.username} bonks ${message.guild.members.cache.get(mention.id).displayName}!...ouch! `, message.author.avatarURL()) - .setDescription(`You've bonked them **${fuck.against[mention.id] === 1 ? 'once' : `${fuck.against[mention.id]} times!`}**`) + .setDescription(`You've bonked them **${bonk.against[mention.id] === 1 ? 'once' : `${bonk.against[mention.id]} times!`}**`) .setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) .setColor('dda0dd') .setFooter(`${fuck.total} bonks${fuck.total === 1 ? '' : 's'} total`)