From 86d846c1f8f757501ebb06a31b9a04bcd99e7efc Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Fri, 24 Dec 2021 20:57:39 +0500 Subject: [PATCH] update profile --- commands/Economy/profile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/Economy/profile.js b/commands/Economy/profile.js index bfdd5672..9a3f5adb 100644 --- a/commands/Economy/profile.js +++ b/commands/Economy/profile.js @@ -54,10 +54,11 @@ class Profile extends Command { }), member.user.displayAvatarURL({ size: 512, dynamic: true, format: "png" })) .attachFiles([{ attachment: await userData.getAchievements(), name: "achievements.png" }]) .setImage("attachment://achievements.png") - .setDescription(userData.bio ? userData.bio : message.translate("economy/profile:NO_BIO")) + // .setDescription(userData.bio ? userData.bio : message.translate("economy/profile:NO_BIO")) .addField(message.translate("economy/profile:CASH"), message.translate("economy/profile:MONEY", { money: memberData.money }), true) + .addField(message.translate("economy/profile:BIO"), userData.bio ? userData.bio : message.translate("economy/profile:NO_BIO"), true) .addField(message.translate("economy/profile:BANK"), message.translate("economy/profile:MONEY", { money: memberData.bankSold }), true)