mirror of
https://github.com/JonnyBro/JaBa.git
synced 2025-04-05 02:16:36 +05:00
25 lines
959 B
JavaScript
25 lines
959 B
JavaScript
import differentCommands from "../utils/differentcommands.js";
|
|
|
|
export default async function registerCommands(props) {
|
|
const globalCommands = props.commands.filter(cmd => !cmd.options?.devOnly);
|
|
await registerGlobalCommands(props.client, globalCommands);
|
|
}
|
|
|
|
const registerGlobalCommands = async (client, commands) => {
|
|
const appCommandsManager = client.application.commands;
|
|
await appCommandsManager.fetch();
|
|
|
|
await Promise.all(
|
|
commands.map(async ({ data }) => {
|
|
const targetCommand = appCommandsManager.cache.find(cmd => cmd.name === data.name);
|
|
|
|
if (targetCommand && differentCommands(targetCommand, data)) {
|
|
await targetCommand.edit(data).catch(() => console.log(`Failed to update command: ${data.name} globally`));
|
|
|
|
console.log(`Edited command globally: ${data.name}`);
|
|
} else if (!targetCommand) {
|
|
await appCommandsManager.create(data).catch(() => console.log(`Failed to register command: ${data.name}`));
|
|
}
|
|
}),
|
|
);
|
|
};
|