From c85af62401c72143ea0da90f07e23cebd0dbe36f Mon Sep 17 00:00:00 2001 From: kennnyshiwa <44236678+kennnyshiwa@users.noreply.github.com> Date: Tue, 9 Apr 2019 18:54:44 -0400 Subject: [PATCH] Fix message when user hits max credits (#2563) * Fix message when user hits max credits Fixes the error message when a users issues the payday command when having max credits * Update economy.py Changed message when user hits max payday and bank is global to match message when bank is per server * Update economy.py made statements match --- redbot/cogs/economy/economy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/economy/economy.py b/redbot/cogs/economy/economy.py index e3138d454..4f5299649 100644 --- a/redbot/cogs/economy/economy.py +++ b/redbot/cogs/economy/economy.py @@ -265,7 +265,7 @@ class Economy(commands.Cog): await bank.set_balance(author, exc.max_balance) await ctx.send( _( - "You've reached the maximum amount of {currency}! (**{balance:,}**) " + "You've reached the maximum amount of {currency}!" "Please spend some more \N{GRIMACING FACE}\n\n" "You currently have {new_balance} {currency}." ).format(currency=credits_name, new_balance=exc.max_balance)