April/commands/dev/reload.mjs
2023-10-13 15:04:11 +02:00

17 lines
599 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);
},
};