Skip to content

Commit

Permalink
Fix double currency symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMonDon committed Jul 22, 2024
1 parent bff7bad commit 873a9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/Economy/withdraw.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Withdraw extends Command {
const newAmount = bank + cash;
await db.set(`servers.${msg.guild.id}.users.${msg.member.id}.economy.cash`, newAmount.toString());

embed.setColor('#04ACF4').setDescription(`Withdrew ${currencySymbol}${csBankAmount} from your bank!`);
embed.setColor('#04ACF4').setDescription(`Withdrew ${csBankAmount} from your bank!`);
return msg.channel.send({ embeds: [embed] });
} else {
return this.client.util.errorEmbed(msg, msg.settings.prefix + this.help.usage, 'Incorrect Usage');
Expand Down

0 comments on commit 873a9d0

Please sign in to comment.