@getsolara/solara.js
Version:
A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.
11 lines • 372 B
JavaScript
module.exports = {
name: "$description",
description: "Sets the description of the embed.",
takesBrackets: true,
execute: async (context, args) => {
if (!args[0]) return "[Error: $description requires text]";
context.embedData = context.embedData || {};
context.embedData.description = args[0];
return "";
}
};