From 231c559b1d6e732d0708ca1b3626a45811ed351a Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Fri, 13 May 2022 15:21:58 +0700 Subject: [PATCH] Error copy --- Bot/Games/Store.fs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Bot/Games/Store.fs b/Bot/Games/Store.fs index a53f58e..e7db13d 100644 --- a/Bot/Games/Store.fs +++ b/Bot/Games/Store.fs @@ -22,7 +22,10 @@ let checkHasSufficientFunds (item : Item) player = | CanBuy price -> if player.Bank - price >= 0 then Ok player - else Error $"You do not have sufficient funds to buy this item! Current balance: {player.Bank} GBT" + else Error $""" +**__Current Balance:__** {player.Bank} 💰 $GBT +Hold up Degen! You don't have enough $GBT! +Go to <#{GuildEnvironment.channelQuests}> to start earning some now...""" | _ -> Error $"{item.Name} item cannot be bought" let getTotalOwnedOfItem (item : Item) (inventory : Item list) =