From 84af829e91593b7672ce25791b478354b295e34b Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 11 Feb 2022 19:14:56 +0100 Subject: Fix: doesn't show custom emojis where they can't show (fixes #2) --- commands/pony.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/pony.js') diff --git a/commands/pony.js b/commands/pony.js index ef29fb9..cd83c66 100644 --- a/commands/pony.js +++ b/commands/pony.js @@ -72,7 +72,7 @@ module.exports = async (interaction) => { await interaction.reply({ ephemeral: interaction.guild !== null, embeds: [ - getEmbed(keys[1], interaction.user.id, interaction.guild ? interaction.guild.id : 0, false, interaction.user) + getEmbed(keys[1], interaction.user.id, interaction.guild ? interaction.guild.id : 0, false, interaction.user, interaction.member, interaction.guild) ], components: [ row -- cgit