Add set_avatar command

This commit is contained in:
2024-03-04 14:28:04 +01:00
parent d2c71cb9c5
commit 2c0f83e9d8

View File

@@ -0,0 +1,22 @@
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
category: 'utility',
global: true,
data: new SlashCommandBuilder()
.setName('set_avatar')
.setDescription('Update the bots user image')
.addAttachmentOption(option =>
option.setName('image')
.setDescription('Image to use')
.setRequired(true)),
async execute(interaction) {
if(!['222457277708369928'].includes(interaction.member.id)) {
await interaction.reply("Insufficient permissions!");
return;
}
await interaction.client.user.setAvatar(interaction.options.getAttachment('image').url);
await interaction.reply("Updated avatar");
},
};