Update RTF.py

This commit is contained in:
Mickaël 2025-08-14 10:04:51 +02:00 committed by GitHub
parent e32176af26
commit 831c727891
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
RTF.py
View file

@ -58,7 +58,7 @@ CVC (unchanged):
-----------------
!mystats Show all your PBs across all bosses and difficulties
!mystats <username> 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 <username>` - View someone's PBs\n" +
"`!help` - Show this help message",
"`!guide` - Show this help message",
inline=False
)