我遇到了特定于角色的命令的问题。例如,我只希望某个角色拥有像ban和kick这样的命令。我用Google搜索并搜索了youtube,但没有出现。
编辑:我发现有人有类似的问题,有人回复:
@bot.command()
@commands.has_role('RoleName')
async def command_name():
所以我试着写:
@bot.command()
@commands.has_role('Admin')
async def kick():
await bot.kick(userName)
但那没用。