【问题标题】:how to remove reaction by specified user?如何删除指定用户的反应?
【发布时间】:2022-06-15 06:55:36
【问题描述】:

我有此代码,但它正在删除对消息的所有反应,但我想删除指定用户 ID 的反应

channel.messages.fetch('981767936949747722').then(function (message) { 
message.reactions.cache.forEach(reaction => reaction.remove())
});

【问题讨论】:

标签: discord.js


【解决方案1】:
channel.messages.fetch('981767936949747722').then(function (message) { 
message.reactions.cache.forEach(reaction => reaction.user.remove("304541381798658048")) // Replace 304541381798658048 by your user ID
});

这段代码应该可以工作。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2020-02-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-07-15
    • 1970-01-01
    • 2021-06-04
    • 2021-05-18
    相关资源
    最近更新 更多