Forgot to unpack tuple in choose shortcut

pull/45/head
Stijn De Clercq 2021-02-28 18:41:41 +01:00
parent 6c4c8079c5
commit 6a671a4768
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class Random(commands.Cog):
# Creates an alias
@commands.command(name="Choice", aliases=["Choose"], usage="[Argumenten]")
async def choose(self, ctx, *options):
await self.choice(ctx, options)
await self.choice(ctx, *options)
@commands.command(name="Shuffle", usage="[Argumenten]")
async def _shuffle(self, ctx, *options):