From d3d09e701cb439534007b793665317398559dcb6 Mon Sep 17 00:00:00 2001 From: Twentysix Date: Sun, 7 Feb 2016 23:18:09 +0100 Subject: [PATCH] Fixed choose command --- cogs/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/general.py b/cogs/general.py index 37ca9ddaf..0edee4fb7 100644 --- a/cogs/general.py +++ b/cogs/general.py @@ -30,7 +30,7 @@ class General: if len(choices) < 2: await self.bot.say('Not enough choices to pick from.') else: - await self.bot.say(choice(choices)) + await self.bot.say(randchoice(choices)) @commands.command() async def roll(self, number : int = 100):