From 888c47cdd217a1d80f86053a36b362e473e4b45e Mon Sep 17 00:00:00 2001 From: Michael H Date: Sat, 15 Feb 2020 08:47:33 -0500 Subject: [PATCH] Payday: Fix missing await (#3554) --- 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 3c4706269..8fc12a8ae 100644 --- a/redbot/cogs/economy/economy.py +++ b/redbot/cogs/economy/economy.py @@ -400,7 +400,7 @@ class Economy(commands.Cog): # Gets the users latest successfully payday and adds the guilds payday time next_payday = ( await self.config.member(author).next_payday() - + self.config.guild(guild).PAYDAY_TIME() + + await self.config.guild(guild).PAYDAY_TIME() ) if cur_time >= next_payday: credit_amount = await self.config.guild(guild).PAYDAY_CREDITS()