From 6a671a4768f0fd745e4100deda7cc7fa420150fd Mon Sep 17 00:00:00 2001 From: Stijn De Clercq Date: Sun, 28 Feb 2021 18:41:41 +0100 Subject: [PATCH] Forgot to unpack tuple in choose shortcut --- cogs/random.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/random.py b/cogs/random.py index b80427e..fc3fa95 100644 --- a/cogs/random.py +++ b/cogs/random.py @@ -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):