我一直在尝试减少在不和谐机器人中输入斜杠命令时显示的角色数量。我有一些我认为是正确的逻辑,但我一定不理解某些东西,因为它仍然无法过滤掉我不希望命令看到的角色。
即使使用白名单,它仍然显示服务器中的所有角色,而不仅仅是我希望命令能够看到的少数角色。
// Allowed roles for the /request command (whitelist)
const allowedRoleIds = [
"xxxxxxxxxxxxx", // L⛏️ : Mining
"xxxxxxxxxxxxx", // L🦬 : Hunter
"xxxxxxxxxxxxx", // L🪵 : Lumberjack
];
// Handle the /request command
client.on('interactionCreate', async interaction => {
// Check if it's an autocomplete interaction
if (interaction.isAutocomplete()) {
if (interaction.commandName === 'request') {
const focusedOption = interaction.options.getFocused(true);
// Only handle the "role" option
if (focusedOption.name === 'role') {
try {
// Fetch and filter roles
const roles = interaction.guild.roles.cache.filter((role) =>
allowedRoleIds.includes(role.id)
);
// Create suggestions
const suggestions = roles.map((role) => ({
name: role.name,
value: role.id,
}));
// Respond with suggestions (limit to 25)
await interaction.respond(suggestions.slice(0, 25));
} catch (error) {
console.error('Error in autocomplete logic:', error);
// Ensure a fallback response to prevent unknown interaction errors
await interaction.respond([]);
}
}
}
return; // Stop further processing for autocomplete interactions
}
您可以在此处阅读,
role
类型的交互命令选项不支持autocomplete
字段。支持自动完成的唯一类型是字符串、整数和数字。
您可以采取的解决方法是将选项类型更改为 string
并返回您想要手动显示的所有角色。你的代码对我来说看起来不错。要使其正常工作,您唯一需要更改的就是使用 string
选项类型重新注册该选项。