我有一个表情? Staff
,我尝试过:8ball: Staff
和? Staff
,但是命令不起作用
该命令是否可以与当前角色一起使用?导致管理员不想更改表情
@client.command()
@commands.has_role('? Staff')
async def test(ctx):
await ctx.send("This is a test")
答案 0 :(得分:1)
您也可以通过角色的ID进行检查:
@client.command()
@commands.has_role(id=112233445566778899)
async def test(ctx):
await ctx.send("This is a test")
参考: