From c11059078339d350b8f523b79af0f0cf72db3eee Mon Sep 17 00:00:00 2001 From: SosoM1k0r31z31 Date: Fri, 13 Nov 2020 12:26:58 +0300 Subject: [PATCH] unknown character detection --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 4d68a88..21c8d91 100644 --- a/bot.py +++ b/bot.py @@ -1563,9 +1563,9 @@ async def character(ctx, char): await ctx.send(charlink("hana")) elif char.lower() == "saori": await ctx.send(charlink("saori")) - elif char.lower() == "list": await ctx.send("```List of available characters\n\nmako\nanchovy\nyuri\naqua\nmio\nmiho\nhana\nsaori```") - + else: + await ctx.send("```unknown character\n\nsee %character list for a list of characters```") bot.run(TOKEN)