chore: update currency symbol from 🪙 to AU in balance display

This commit is contained in:
syntaxbullet
2025-12-14 14:28:11 +01:00
parent 4639fecf45
commit bd59f01a41

View File

@@ -19,7 +19,7 @@ export const balance = createCommand({
const embed = new EmbedBuilder() const embed = new EmbedBuilder()
.setAuthor({ name: targetUser.username, iconURL: targetUser.displayAvatarURL() }) .setAuthor({ name: targetUser.username, iconURL: targetUser.displayAvatarURL() })
.setDescription(`**Balance**: ${user.balance || 0n} 🪙`) .setDescription(`**Balance**: ${user.balance || 0n} AU`)
.setColor("Yellow"); .setColor("Yellow");
await interaction.editReply({ embeds: [embed] }); await interaction.editReply({ embeds: [embed] });