diff options
author | 2022-08-23 20:46:14 +0100 | |
---|---|---|
committer | 2022-09-21 23:02:55 +0100 | |
commit | cc2dcdcdbf9e6057053bdb72bba848f4c2e19cbd (patch) | |
tree | 75c87793362d786bb2c45fea8fb235435e44c315 /bot/exts/avatar_modification/avatar_modify.py | |
parent | Move startup checks and logs to their own cog (diff) |
Use extension utils from bot-core
Diffstat (limited to 'bot/exts/avatar_modification/avatar_modify.py')
-rw-r--r-- | bot/exts/avatar_modification/avatar_modify.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/avatar_modification/avatar_modify.py b/bot/exts/avatar_modification/avatar_modify.py index 3ee70cfd..337f510c 100644 --- a/bot/exts/avatar_modification/avatar_modify.py +++ b/bot/exts/avatar_modification/avatar_modify.py @@ -14,7 +14,6 @@ from discord.ext import commands from bot.bot import Bot from bot.constants import Colours, Emojis from bot.exts.avatar_modification._effects import PfpEffects -from bot.utils.extensions import invoke_help_command from bot.utils.halloween import spookifications log = logging.getLogger(__name__) @@ -89,7 +88,7 @@ class AvatarModify(commands.Cog): async def avatar_modify(self, ctx: commands.Context) -> None: """Groups all of the pfp modifying commands to allow a single concurrency limit.""" if not ctx.invoked_subcommand: - await invoke_help_command(ctx) + await self.bot.invoke_help_command(ctx) @avatar_modify.command(name="8bitify", root_aliases=("8bitify",)) async def eightbit_command(self, ctx: commands.Context) -> None: |