fix wallet name errors/set wallet parameters"
This commit is contained in:
3 files changed
+101
-5
No files matched your search
+1
-1
@@ -92,7 +92,7 @@ module.exports = {
|
||||
if (item.type == 'wallet') {
|
||||
// Display wallet
|
||||
|
||||
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}\n**ID:** ${client.exists(item.ID.firstname) ? item.ID.firstname : '...'} ${client.exists(item.ID.lastname) ? item.ID.lastname : '...'} | ${client.exists(item.ID.dob) ? item.ID.dob : 'N/A'}`
|
||||
|
||||
itemEmbed.setTitle(`${User.tag.split('#')[0]}'s Wallet`);
|
||||
itemEmbed.setDescription(walletData);
|
||||
|
||||
Reference in new issue
Block a user