From b10894dda48aaf2c50b6bfaf26f3fed524af7bc0 Mon Sep 17 00:00:00 2001 From: Melvin Jones Repol Date: Tue, 30 Jan 2024 10:19:20 +0800 Subject: [PATCH] Initial Commit --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 85c6851b..07e3013b 100644 --- a/index.js +++ b/index.js @@ -4441,7 +4441,7 @@ async function ai(api, event) { } else { getUserProfile(id, async function (name) { if (!name.balance) { - sendMessage(api, event, name + " have 0 $ balance."); + sendMessage(api, event, name.firstName + " have 0 $ balance."); } else { sendMessage(api, event, utils.formatOutput("Balance", [formatDecNum((name.balance / 1000) * 0.007) + "$ " + name.firstName], "github.com/prj-orion")); }