【发布时间】:2020-06-19 04:29:31
【问题描述】:
用户直接在语音频道直播时有什么事件吗?
【问题讨论】:
标签: discord.js
用户直接在语音频道直播时有什么事件吗?
【问题讨论】:
标签: discord.js
client.on("voiceStateUpdate", (oldVoiceState, newVoiceState) => {
if (!newVoiceState) {return false};
if (newVoiceState.streaming) {
console.log(`${newVoiceState.member.user.tag} is streaming.`);
};
});
【讨论】: