From 87596a541f71b28ba4000f847ff159f501b8d3c0 Mon Sep 17 00:00:00 2001 From: Hipstercat Date: Fri, 25 Sep 2020 01:14:19 +0200 Subject: [PATCH] quests quefaire (format) --- cogs/wynncraft/wynncraftcog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/wynncraft/wynncraftcog.py b/cogs/wynncraft/wynncraftcog.py index d1f0117..78170ea 100644 --- a/cogs/wynncraft/wynncraftcog.py +++ b/cogs/wynncraft/wynncraftcog.py @@ -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 :(")