From f26274bbdc8000045efcc40d5c136507cd988df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl?= Date: Sun, 11 Jun 2017 18:28:34 -0400 Subject: [PATCH] Fix... --- bot.py | 3 +++ cogs/funs.py | 9 ++++++--- cogs/search.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/bot.py b/bot.py index 3371cfc..32e3b81 100644 --- a/bot.py +++ b/bot.py @@ -89,6 +89,9 @@ async def on_message(message): if re.match(r'^<@(\w+)>$', message.content): await bot.send_message(message.channel, message.author.mention + " > Tu voulais lui dire quoi ? Tu le mentionne sans message !") + if re.match(r"[A-Z]{5,}") and not message.author.bot and len(message.content) > 5: + await bot.send_message(message.channel, message.author.mention + " > Evite les messages en majuscule, ce n'est pas la peine de crier !") + await bot.process_commands(message) @bot.command(pass_context=True, hidden=True) diff --git a/cogs/funs.py b/cogs/funs.py index aaa46db..c8afd87 100644 --- a/cogs/funs.py +++ b/cogs/funs.py @@ -90,10 +90,13 @@ class Funs: poke1 = jk[random.randint(1, 150)] poke2 = jk[random.randint(1, 150)] - if poke1['MaxHP'] > poke2['MaxHP']: + try: + if poke1['MaxHP'] > poke2['MaxHP']: + winer = poke1 + else: + winer = poke2 + except: winer = poke1 - else: - winer = poke2 await self.bot.say(":flag_white: **Le combat commence !**") await asyncio.sleep(1) diff --git a/cogs/search.py b/cogs/search.py index 43882cb..32b6044 100644 --- a/cogs/search.py +++ b/cogs/search.py @@ -113,7 +113,7 @@ class Search: await self.bot.say(":open_mouth: Une **erreur interne** est survenue, si cela ce reproduit contactez votre administrateur ou faites une Issue sur ``github`` !") except UnboundLocalError: await self.bot.say(":interrobang: Veuillez choisir une réaction valide !") - except DisambiguationError: + except: await self.bot.say(":open_mouth: Une **erreur interne** est survenue, si cela ce reproduit contactez votre administrateur ou faites une Issue sur ``github`` !") except IndexError: await self.bot.say(" :interrobang: Veuillez entrer un terme de recherche !")