diff options
author | 2020-03-07 17:53:46 +0200 | |
---|---|---|
committer | 2020-03-07 17:53:46 +0200 | |
commit | 769ee664cfc2bb88af4ddbeab71ea1220e45a480 (patch) | |
tree | 60c3b40e317cd3065e06a0e97dd19f488ef158b3 | |
parent | (Space Cog): Improved `.space mars` command, added possibility for SOL date a... (diff) |
(Space Cog): Added `invoke_without_command` parameter to `.space` command to not call head command when trying to use subcommand.
-rw-r--r-- | bot/seasons/evergreen/space.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/space.py b/bot/seasons/evergreen/space.py index ffd14472..f04482d3 100644 --- a/bot/seasons/evergreen/space.py +++ b/bot/seasons/evergreen/space.py @@ -42,7 +42,7 @@ class Space(Cog): self.bot = bot self.http_session = bot.http_session - @group(name="space") + @group(name="space", invoke_without_command=True) async def space(self, ctx: Context) -> None: """Head command that contains commands about space.""" await ctx.send_help("space") |