尝试禁用 discord.js 14 中的消息按钮,当我按下其中一个按钮并且不起作用时。我得到这个错误:TypeError: component.setDisabled is not a function
代码:
module.exports =
{
id: "paper",
async execute(interaction)
{
for (let row of interaction.message.components)
{
for (let component of row.components)
{
if (component.type === 2 && (
component.customId === "rock" ||
component.customId === "paper" ||
component.customId === "scissors"
))
{
console.log(component.customId);
component.setDisabled(true);
}
}
}
await interaction.message.edit({ components: interaction.message.components });
await interaction.reply("Tried to disable the message");
}
}
我正在尝试使用不和谐的机器人和我在消息中放置的一些按钮来创建剪刀石头布射击游戏。我期望的是当我按下其中一个按钮时禁用消息的所有按钮。 (我很确定只有那个错误不起作用,因为交互正确回复了消息并且
customId
打印正确。