fix wallet name errors/set wallet parameters"

This commit is contained in:
SowinskiBraeden committed 2022-07-10 23:54:36 -07:00
1 parent 3c74864d27
commit 0dd0d7b11e
3 files changed
+101 -5

No files matched your search

+1 -1
View File
@@ -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);