fix(arabot): change wording

This commit is contained in:
Anthony 2022-07-27 02:20:59 +01:00
parent 93061fcf44
commit 0fcb6c5985

View File

@ -26,7 +26,7 @@ export class ShrugCommand extends Command {
super(context, { super(context, {
...options, ...options,
name: 'shrug', name: 'shrug',
description: 'Ugh... whatever...', description: 'Ugh... whatever... idk...',
preconditions: ['CoordinatorOnly'], preconditions: ['CoordinatorOnly'],
}); });
} }
@ -54,7 +54,7 @@ export class ShrugCommand extends Command {
const randomShrug = Shrug[Math.floor(Math.random() * Shrug.length)]; const randomShrug = Shrug[Math.floor(Math.random() * Shrug.length)];
const shrugEmbed = new MessageEmbed() const shrugEmbed = new MessageEmbed()
.setColor('#001980') .setColor('#001980')
.setTitle(`${memberGuildMember.displayName} is whatever...`) .setTitle(`${memberGuildMember.displayName} shrugs`)
.setImage(randomShrug); .setImage(randomShrug);
// Send the embed // Send the embed