From 09e39252f8bafef254eaa46177b0a8707dfeda93 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 27 Jul 2022 01:53:58 +0100 Subject: [PATCH] fix(arabot): change messages for happy and sad --- src/commands/fun/happy.ts | 2 +- src/commands/fun/sad.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/fun/happy.ts b/src/commands/fun/happy.ts index d326b27..02f1073 100644 --- a/src/commands/fun/happy.ts +++ b/src/commands/fun/happy.ts @@ -54,7 +54,7 @@ export class HappyCommand extends Command { const randomHappy = Happy[Math.floor(Math.random() * Happy.length)]; const happyEmbed = new MessageEmbed() .setColor('#40ff00') - .setTitle(`Poke from ${memberGuildMember.displayName}`) + .setTitle(`${memberGuildMember.displayName} is happy!`) .setImage(randomHappy); // Send the embed diff --git a/src/commands/fun/sad.ts b/src/commands/fun/sad.ts index 619285f..8bafcdb 100644 --- a/src/commands/fun/sad.ts +++ b/src/commands/fun/sad.ts @@ -54,7 +54,7 @@ export class SadCommand extends Command { const randomSad = Sad[Math.floor(Math.random() * Sad.length)]; const sadEmbed = new MessageEmbed() .setColor('#001148') - .setTitle(`Poke from ${memberGuildMember.displayName}`) + .setTitle(`${memberGuildMember.displayName} is sad...`) .setImage(randomSad); // Send the embed