From 6d08d18b7eb0830706600114f0bfc9493f988180 Mon Sep 17 00:00:00 2001 From: bobloy Date: Fri, 26 Oct 2018 11:46:57 -0400 Subject: [PATCH] Forgot await --- recyclingplant/recyclingplant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recyclingplant/recyclingplant.py b/recyclingplant/recyclingplant.py index dbb77da..e8954b2 100644 --- a/recyclingplant/recyclingplant.py +++ b/recyclingplant/recyclingplant.py @@ -87,6 +87,6 @@ class RecyclingPlant(Cog): await bank.deposit_credits(ctx.author, reward) await ctx.send( "{} been given **{} {}s** for your services.".format( - ctx.author.display_name, reward, bank.get_currency_name(ctx.guild) + ctx.author.display_name, reward, await bank.get_currency_name(ctx.guild) ) )