Merge pull request #24 from smyalygames/main

fix(arabot): change messages for happy and sad
This commit is contained in:
Anthony 2022-07-27 01:54:31 +01:00 committed by GitHub
commit 26471ae3ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 happyEmbed = new MessageEmbed()
.setColor('#40ff00')
.setTitle(`Poke from ${memberGuildMember.displayName}`)
.setTitle(`${memberGuildMember.displayName} is happy!`)
.setImage(randomHappy);
// Send the embed

View File

@ -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