作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如果不为不同大小写添加许多别名,如何使命令不区分大小写,如下所示:
@bot.command(pass_context = True, name = 'test', aliases=['Test', 'tEst', 'teSt', 'tesT', 'TEst', 'TeSt', 'TesT', 'tESt', 'tEsT'])
async def test(self, ctx):
#do stuff
最佳答案
在重写分支上,commands.Bot
接受 case_insensitive
参数
bot = commands.Bot(command_prefix='!', case_insensitive=True)
请注意,使用此功能会降低性能。
关于python - 如何在 discord.py 中使命令不区分大小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48120312/
我是一名优秀的程序员,十分优秀!