@getsolara/solara.js
Version:
A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.
10 lines • 404 B
JavaScript
module.exports = {
name: "$authorAvatar",
description: "Returns the avatar URL of the command author.",
takesBrackets: false,
execute: async (context, args) => {
const user = context.interaction?.user ?? context.message?.author;
if (!user) return "[Error: Cannot find command author]";
return user.displayAvatarURL({ dynamic: true, size: 4096 });
}
};