mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 06:24:15 +02:00
Merge pull request #24 from smyalygames/main
fix(arabot): change messages for happy and sad
This commit is contained in:
commit
26471ae3ba
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user