quests quefaire (format)

This commit is contained in:
Amazed 2020-09-25 01:14:19 +02:00
parent f9e9300365
commit 87596a541f
1 changed files with 2 additions and 2 deletions

View File

@ -336,11 +336,11 @@ class WynncraftCog(commands.Cog):
for grind_spot in grind_spots:
if grind_spot["minlevel"] <= level <= grind_spot["maxlevel"]:
hints.append(":star: Tu peux grinder aux coordonnées %s jusqu'au niveau %s" % (grind_spot["location"], grind_spot["maxlevel"]))
hints.append(":star: Tu peux grinder aux coordonnées %s jusqu'au niveau %s" % (grind_spot["location"], grind_spot["maxlevel"] + 1))
break
if hints:
await ctx.send(":dizzy: Woosh! Voici comment tu peux continuer ton aventure :\n%s" % "\n\t".join(hints))
await ctx.send(":dizzy: Woosh! Voici comment tu peux continuer ton aventure :\n\n\t%s" % "\n\t".join(hints))
else:
await ctx.send(":x: je sais pas comment t'aider :(")