@getsolara/solara.js
Version:
A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.
11 lines • 456 B
JavaScript
module.exports = {
name: "$interactionValues",
description: "Returns the selected value(s) from a select menu interaction, joined by semicolon.",
takesBrackets: false,
execute: async (context, args) => {
if (!context.interaction || !context.interaction.isAnySelectMenu()) {
return "[Error: Not a select menu interaction context]";
}
return context.interaction.values?.join(';') || "";
}
};