Fixed choose command

This commit is contained in:
Twentysix 2016-02-07 23:18:09 +01:00
parent 6527e026ae
commit d3d09e701c

View File

@ -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):