mirror of https://github.com/stijndcl/didier
Forgot to unpack tuple in choose shortcut
parent
6c4c8079c5
commit
6a671a4768
|
@ -19,7 +19,7 @@ class Random(commands.Cog):
|
||||||
# Creates an alias
|
# Creates an alias
|
||||||
@commands.command(name="Choice", aliases=["Choose"], usage="[Argumenten]")
|
@commands.command(name="Choice", aliases=["Choose"], usage="[Argumenten]")
|
||||||
async def choose(self, ctx, *options):
|
async def choose(self, ctx, *options):
|
||||||
await self.choice(ctx, options)
|
await self.choice(ctx, *options)
|
||||||
|
|
||||||
@commands.command(name="Shuffle", usage="[Argumenten]")
|
@commands.command(name="Shuffle", usage="[Argumenten]")
|
||||||
async def _shuffle(self, ctx, *options):
|
async def _shuffle(self, ctx, *options):
|
||||||
|
|
Loading…
Reference in New Issue