如何查看nsfw频道?我知道函数is_nsfw()但是如何使用? 我使用asyncio和discord libary。 我的意思是如果channel.is_nsfw()== False: client.say("你不能在这里使用那个命令!")
答案 0 :(得分:0)
您需要使用discord python api重写才能执行此操作,可以在https://github.com/Rapptz/discord.py/tree/rewrite下载 然后,使用
if ctx.channel.is_nsfw():
ctx.send("U can't use that command!")
else:
command_code_here
检查通道是否为nsfw,并将command_code_here替换为命令代码