fix(arabot): change messages for happy and sad

This commit is contained in:
Anthony 2022-07-27 01:53:58 +01:00
parent cc62db5016
commit 09e39252f8
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ export class HappyCommand extends Command {
const randomHappy = Happy[Math.floor(Math.random() * Happy.length)]; const randomHappy = Happy[Math.floor(Math.random() * Happy.length)];
const happyEmbed = new MessageEmbed() const happyEmbed = new MessageEmbed()
.setColor('#40ff00') .setColor('#40ff00')
.setTitle(`Poke from ${memberGuildMember.displayName}`) .setTitle(`${memberGuildMember.displayName} is happy!`)
.setImage(randomHappy); .setImage(randomHappy);
// Send the embed // Send the embed

View File

@ -54,7 +54,7 @@ export class SadCommand extends Command {
const randomSad = Sad[Math.floor(Math.random() * Sad.length)]; const randomSad = Sad[Math.floor(Math.random() * Sad.length)];
const sadEmbed = new MessageEmbed() const sadEmbed = new MessageEmbed()
.setColor('#001148') .setColor('#001148')
.setTitle(`Poke from ${memberGuildMember.displayName}`) .setTitle(`${memberGuildMember.displayName} is sad...`)
.setImage(randomSad); .setImage(randomSad);
// Send the embed // Send the embed