Discord-Raid-bot/cogs/pbcvc.py
LE BERRE Mickael 314483e4f5 fix: support multi-word usernames in pb lookup commands
Sans le *, discord.py tronquait les noms avec espaces au premier mot.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 11:52:04 +02:00

18 lines
528 B
Python

# -*- coding: utf-8 -*-
import discord
from discord.ext import commands
from utils.pb_handler import handle_pb_command
class Pbcvc(commands.Cog):
"""Cog pour gérer les Personal Bests CvC (sans difficultés)"""
def __init__(self, bot):
self.bot = bot
@commands.command(name="pbcvc")
async def pbcvc(self, ctx, *, target_user: str = None):
"""Commande !pbcvc"""
await handle_pb_command(ctx, 'cvc', target_user)
async def setup(bot):
await bot.add_cog(Pbcvc(bot))