diff options
| -rw-r--r-- | bot/exts/info/patreon.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/info/patreon.py b/bot/exts/info/patreon.py index e68307122..dc71a5db5 100644 --- a/bot/exts/info/patreon.py +++ b/bot/exts/info/patreon.py @@ -30,8 +30,6 @@ class Patreon(commands.Cog): patreon_tier_2_role = guild.get_role(constants.Roles.patreon_tier_2) patreon_tier_3_role = guild.get_role(constants.Roles.patreon_tier_3) - sending_channel = utils.channel.get_or_fetch_channel(constants.Channels.meta) - current_patreon_tier = 0 new_patreon_tier = 0 @@ -62,6 +60,8 @@ class Patreon(commands.Cog): "[Support us on Patreon](https://pydis.com/patreon)" ) + sending_channel = utils.channel.get_or_fetch_channel(constants.Channels.meta) + await sending_channel.send( embed=discord.Embed( description=message, |