📜  如何在 discord.py 中使机器人命令不区分大小写 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:32.175000             🧑  作者: Mango

代码示例1
@client.event
async def on_message(message):
    message.content = message.content.lower()
    await client.process_commands(message)