Answers for "How to make bot commands case insensitive in discord.py"

0

How to make bot commands case insensitive in discord.py

@client.event
async def on_message(message):
    message.content = message.content.lower()
    await client.process_commands(message)
Posted by: Guest on September-22-2021

Code answers related to "How to make bot commands case insensitive in discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language