April/commands/dev/reload.mjs
2023-09-13 21:26:16 +02:00

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);
}
};