diff options
Diffstat (limited to 'bot/seasons')
| -rw-r--r-- | bot/seasons/evergreen/game.py | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/game.py b/bot/seasons/evergreen/game.py index 41aded90..cc798da5 100644 --- a/bot/seasons/evergreen/game.py +++ b/bot/seasons/evergreen/game.py @@ -208,8 +208,10 @@ class Games(Cog):              if possibility:                  games = possibility              else: +                display_possibilities = ", ".join(p[1] for p in possibilities if p[0] >= 0.40)                  await ctx.send( -                    f"Invalid genre `{genre}`. {f'Maybe you meant `{possibilities}`?' if possibilities else ''}" +                    f"Invalid genre `{genre}`. " +                    f"{f'Maybe you meant `{display_possibilities}`?' if display_possibilities else ''}"                  )                  return  |