Skip to content

Commit

Permalink
less sensitive ask to resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperAnt220 committed Jan 10, 2025
1 parent 3d0ac6c commit 6f4370b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cogs/help/ask_to_resolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ async def ask_to_resolve(self, msg):
valid_strings = {
"решено": ["решил", "решила", "решили", "решилось"],
"спасибо": ["спс", "благодарю", "спасибки", "пасиб", "благодарствую", "благодарен"],
"работает": ["сработало", "заработало", "получилось"],
"помогло": ["помог", "помогла", "помогли"],
"разобрался": ["разобралась", "разобрались", "понял", "поняла"],
"получилось": ["вышло", "удалось", "справился", "справилась"]
"разобрался": ["разобралась", "разобрались", "понял", "поняла"]
}
msg_words = msg.content.strip().lower().split()
if "не" not in msg.content.lower() and any(validate(word, valid_strings, 4) for word in msg_words):
Expand Down Expand Up @@ -47,5 +45,5 @@ async def ask_to_resolve_msg(self, msg):
first_msg = first_msgs[0]
existing_ask_msgs = [msg async for msg in msg.channel.history()
if msg.author.bot and "если ваша проблема решена" in msg.content]
if len(existing_ask_msgs) < 3:
if len(existing_ask_msgs) < 2:
await first_msg.reply(f"{msg.author.mention}, если ваша проблема решена, нажмите на соответствующую кнопку у того сообщения. Если вы думаете, что будете ещё задавать связанные с этой темой вопросы в этой ветке, то можете пока не нажимать.")

0 comments on commit 6f4370b

Please sign in to comment.