diff --git a/interactions/commands/h.js b/interactions/commands/h.js new file mode 100644 index 0000000..ab702ed --- /dev/null +++ b/interactions/commands/h.js @@ -0,0 +1,15 @@ +module.exports = { + name: 'h', + + async execute(client, interaction) { + interaction.reply({ + embeds: [{ + title: 'h', + image: { + url: 'https://cdn.discordapp.com/attachments/439531641539526666/861256439209394176/arg-h-trans.gif' + }, + color: client.config.color + }] + }); + } +};