From c470bec50a8b7fc094840a16ffeb3413c4b09874 Mon Sep 17 00:00:00 2001 From: bobloy Date: Mon, 22 Oct 2018 14:03:17 -0400 Subject: [PATCH] Missing await --- recyclingplant/recyclingplant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recyclingplant/recyclingplant.py b/recyclingplant/recyclingplant.py index c487804..5a93abf 100644 --- a/recyclingplant/recyclingplant.py +++ b/recyclingplant/recyclingplant.py @@ -81,7 +81,7 @@ class RecyclingPlant(Cog): ) else: if reward > 0: - bank.deposit_credits(ctx.author, reward) + 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)