diff options
| author | 2021-10-28 07:59:01 +0100 | |
|---|---|---|
| committer | 2021-10-28 07:59:01 +0100 | |
| commit | 02a02bf7be4003303c9ac4173e870d2dd8f57c8b (patch) | |
| tree | fb7c4fe08ad23326b35d549a82328eae87c88a46 | |
| parent | Fix capitalisation (diff) | |
Save API call
Diffstat (limited to '')
| -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, | 
