如何退出或中断discord.py中的命令
问题描述
我想知道是否有办法在命令与条件匹配时将其中断
例如,我想在用户不是管理员时中断此命令
@client.command
async def test_me(ctx):
user = ctx.author.id
if user not in admins:
await ctx.send("you're not admin")
break command
else:
None
await ctx.send('Hi admin')
所以我不想在if语句中添加整个内容,这就是我问的原因
解决方案
您不能break
函数。您需要在循环中才能使用Break,而且如果else
语句为空,则不需要该语句。
如果您只想退出函数,可以使用return
这样的东西应该可以用
@client.command
async def test_me(ctx):
user = ctx.author.id
if user not in admins:
await ctx.send("you're not admin")
return
await ctx.send('Hi admin')
相关文章