discord.py 关于频道创建

时间:2021-07-01 20:22:56

标签: python discord.py

当有人创建文本/语音频道时,discord.py 中是否会触发一个事件?

我希望机器人了解频道何时创建,以便它可以发布日志

@bot.event

1 个答案:

答案 0 :(得分:0)

是的,有 2 个事件:

@bot.event
async def on_guild_channel_create(channel):
    ...

@bot.event
async def on_private_channel_create(channel):  # called when a DM channel is created
    ...

参考:

相关问题