mirror of
https://github.com/Art-Portal/April.git
synced 2024-11-16 11:37:37 +01:00
16 lines
588 B
JavaScript
16 lines
588 B
JavaScript
import { SlashCommandBuilder } from 'discord.js';
|
|
import { deploy_commands } from '../../functions.mjs';
|
|
import config from '../../config.json' assert { type: 'json' };
|
|
const { devId } = config;
|
|
|
|
export default {
|
|
data: new SlashCommandBuilder()
|
|
.setName('reload')
|
|
.setDefaultMemberPermissions(0x8)
|
|
.setDescription('Recharge les commandes du bot (dev only).'),
|
|
async execute(interaction, client) {
|
|
if (!interaction.user.id == devId) return void interaction.reply({ content: "Permission denied" });
|
|
deploy_commands(client, false);
|
|
}
|
|
};
|