diff --git a/bot.py b/bot.py index f351afe..d118177 100644 --- a/bot.py +++ b/bot.py @@ -10,6 +10,7 @@ from player import * import traceback from exceptions import * import asyncio, sys, argparse +from aiohttp.client_exceptions import ClientConnectionError #Скрыть сообщение если надо ephemeral=True class DiscordClient(commands.Bot): @@ -78,6 +79,8 @@ class DiscordClient(commands.Bot): return await interaction.followup.send("Слишком долгий ответ со стороны сервера, причины:\n1) Возможно бекенд сдох\n2)Cлишком долгий незапланированный ответ с сервера\n3)Стоит позвать помощь", ephemeral=True) elif isinstance(error.original, NeedDiscordAuthOfSteam): return await interaction.followup.send("У тебя не привязан профиль стима к дискорду, ничего подобного делать тебе нельзя", ephemeral=True) + elif isinstance(error.original, ClientConnectionError): + return await interaction.followup.send("Сервис фактов13 не дал ответ, вероятно он умер, поэтому стоит немного подождать и может что-то изменится", ephemeral=True) traceback.print_exc() return await interaction.followup.send("Возникла необратимая ошибка, хз что случилось. Попробуй еще раз!", ephemeral=True) diff --git a/other_ext/webhook_helper.py b/other_ext/webhook_helper.py index dd908de..4d36b80 100644 --- a/other_ext/webhook_helper.py +++ b/other_ext/webhook_helper.py @@ -29,7 +29,7 @@ class Extension: "😇":("unban", {"profile":"", "discord_user":None}), "<:hueglot:713139400028061767>":("kick", {"profile":"", "requester_profile":"", "discord_user":None}), "🔍":("profile", {"profile":"", "discord_user":None}), - "🔎":("unban", {"profile":"", "requester_profile":"", "discord_user":None}) + "🔎":("profile", {"profile":"", "requester_profile":"", "discord_user":None}) } @core.listen() diff --git a/user_ext/freevip.py b/user_ext/freevip.py index 22d1d85..18ea9e5 100644 --- a/user_ext/freevip.py +++ b/user_ext/freevip.py @@ -15,9 +15,9 @@ class Extension: if player.permition: return await interaction.followup.send(content="У тебя уже есть права, бесплатная випка тебе не нужна!") - a = random.randint(1, 999) - b = random.randint(1, 999) - c = random.randint(1, 999) + a = random.randint(1, 9) + b = random.randint(1, 9) + c = random.randint(1, 9) d = a * b - c primer = f"{a} x {b} - {c} = ?"