Discord.js - 设置频道说明

时间:2018-06-11 14:50:45

标签: discord discord.js channels

我试图设置频道说明,但我在discord.js文档中找不到它。有人知道那个代码吗?

2 个答案:

答案 0 :(得分:1)

您可能正在寻找:channel.setTopic() 例如:

// Set a new channel topic
channel.setTopic('Needs more rate limiting')
  .then(updated => console.log(`Channel's new topic is ${updated.topic}`))
  .catch(console.error);

答案 1 :(得分:0)

您可以使用.setTopic()函数。例如:

<channel>.setTopic('Topic here')