diff options
| -rw-r--r-- | bot/cogs/utils.py | 12 | 
1 files changed, 11 insertions, 1 deletions
| diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py index f0b1172e3..3ed471bbf 100644 --- a/bot/cogs/utils.py +++ b/bot/cogs/utils.py @@ -236,7 +236,17 @@ class Utils(Cog):              await ctx.send(embed=embed)              return -        # handle if it's a search string +        # Try to handle first exact word due difflib.SequenceMatched may use some other similar word instead +        # exact word. +        for i, line in enumerate(zen_lines): +            for word in line.split(): +                if word.lower() == search_value.lower(): +                    embed.title += f" (line {i}):" +                    embed.description = line +                    await ctx.send(embed=embed) +                    return + +        # handle if it's a search string and not exact word          matcher = difflib.SequenceMatcher(None, search_value.lower())          best_match = "" | 
