From 831c7278910bdbcaabe76d81bfd882e68cbcc796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl?= <159157671+ArcElewyn@users.noreply.github.com> Date: Thu, 14 Aug 2025 10:04:51 +0200 Subject: [PATCH] Update RTF.py --- RTF.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RTF.py b/RTF.py index ea275e0..8b3ca9c 100644 --- a/RTF.py +++ b/RTF.py @@ -58,7 +58,7 @@ CVC (unchanged): ----------------- !mystats → Show all your PBs across all bosses and difficulties !mystats → Show all PBs for specified user -!help → Show user-friendly command list +!guide → Show user-friendly command list 💡 USAGE EXAMPLES: ----------------- @@ -841,13 +841,13 @@ async def mystats(ctx, target_user: str = None): await ctx.send(f"❌ Error: {e}") @bot.command() -async def help(ctx): +async def guide(ctx): """Affiche la liste des commandes disponibles avec les nouvelles difficultés""" if ctx.channel.id != AUTHORIZED_CHANNEL_ID: return embed = discord.Embed( - title="🤖 RTF Bot - Commands Help", + title="🤖 RTF Bot - Commands Guide", description="Here are all available commands for tracking your Personal Bests!", color=0x00bfff ) @@ -904,7 +904,7 @@ async def help(ctx): name="📈 Stats & Info", value="`!mystats` - View all your PBs\n" + "`!mystats ` - View someone's PBs\n" + - "`!help` - Show this help message", + "`!guide` - Show this help message", inline=False )