fix withdraw/deposit commands
This commit is contained in:
4 files changed
+200
-5
No files matched your search
@@ -146,7 +146,7 @@ module.exports = {
|
||||
// Display wallet
|
||||
|
||||
let item = inventory.items[0];
|
||||
let walletData = `**Cash:** $${item.cash}\n**ID:** ${item.ID.firstname ? client.exists(item.ID.firtname) : 'John'} ${item.ID.lastname ? client.exists(item.ID.lastname) : 'Doe'} | ${item.ID.dob ? client.exists(item.ID.dob) : 'N/A'}`
|
||||
let walletData = `**Cash:** $${item.cash.toFixed(2)}\n**ID:** ${item.ID.firstname ? client.exists(item.ID.firtname) : 'John'} ${item.ID.lastname ? client.exists(item.ID.lastname) : 'Doe'} | ${item.ID.dob ? client.exists(item.ID.dob) : 'N/A'}`
|
||||
|
||||
let walletEmbed = new MessageEmbed()
|
||||
.setTitle(`Your Wallet`)
|
||||
|
||||
Reference in new issue
Block a user