diff --git a/commands/ask.py b/commands/ask.py index 1079d42..ee3b9bc 100644 --- a/commands/ask.py +++ b/commands/ask.py @@ -14,9 +14,9 @@ def ask(bot,channel,nick,subcmd,*args): @ask.command("c") def ask_char(bot,channel,nick,*args): question = random.choice(chars) - bot.say(channel,nick,"{}: {!s}. {}".format(nick,chars.index(question),question)) + bot.say(channel,"{}: {!s}. {}".format(nick,chars.index(question),question)) @ask.command("w") def ask_world(bot,channel,nick,*args): question = random.choice(world) - bot.say(channel,nick,"{}: {!s}. {}".format(nick,world.index(question),question)) + bot.say(channel,"{}: {!s}. {}".format(nick,world.index(question),question))