diff --git a/cogs/wynncraft/wynncraftcog.py b/cogs/wynncraft/wynncraftcog.py index 6b1618e..175c464 100644 --- a/cogs/wynncraft/wynncraftcog.py +++ b/cogs/wynncraft/wynncraftcog.py @@ -394,7 +394,7 @@ class WynncraftCog(commands.Cog): continue connexions = {k: v for k, v in sorted(connexions.items(), key=lambda item: item[1])} - await ctx.send("\n".join("**%s**: %s" % (key, td_format(val)) for (key, val) in connexions.items())) + await ctx.send("Dernières connexions:\n%s" % "\n".join("**%s**: %s" % (key, td_format(val)) for (key, val) in connexions.items())) @commands.command() @checks.admin_or_permissions(manage_guild=True)