From 292226d0ccf1f8e43f9f7bd77ac1c6a2d22f7b95 Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Fri, 24 Dec 2021 20:58:38 +0500 Subject: [PATCH] change position of bio --- commands/Economy/profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/Economy/profile.js b/commands/Economy/profile.js index 9a3f5adb..cd03905f 100644 --- a/commands/Economy/profile.js +++ b/commands/Economy/profile.js @@ -55,10 +55,10 @@ class Profile extends Command { .attachFiles([{ attachment: await userData.getAchievements(), name: "achievements.png" }]) .setImage("attachment://achievements.png") // .setDescription(userData.bio ? userData.bio : message.translate("economy/profile:NO_BIO")) + .addField(message.translate("economy/profile:BIO"), 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)