From 01b2c5ab56cb8b5b84cf59235688ff77ef3f4532 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 10 Aug 2022 04:37:28 +0100 Subject: [PATCH] feat(arabot): dantas is literally 1984 --- src/commands/fun/1984.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/fun/1984.ts b/src/commands/fun/1984.ts index c75aa01..439916b 100644 --- a/src/commands/fun/1984.ts +++ b/src/commands/fun/1984.ts @@ -51,7 +51,9 @@ export class N1984Command extends Command { const memberGuildMember = interaction.guild!.members.cache.get(member.id)!; // Creates the embed for the 1984 reaction - const random1984 = N1984[Math.floor(Math.random() * N1984.length)]; + // Add a 1 in 1000 chance of Dantas literally making ARA 1984 + const random1984 = Math.random() < 0.001 ? 'https://tenor.com/view/arthuria-dantas-dancing-dantas-woke-weebs-gif-18773803' + : N1984[Math.floor(Math.random() * N1984.length)]; const n1984Embed = new MessageEmbed() .setColor('#ffffff') .setTitle(`${memberGuildMember.displayName} is happy!`)