added default context and moved integration types to the command

Slash-V14
Supositware 2 weeks ago
parent c44ae79640
commit 454f2c4296

@ -33,6 +33,7 @@ export default {
.setRequired(false)),
category: 'utility',
alias: ['dl'],
integration_types: [0, 1],
async execute(interaction, args, c) {
client = c;

@ -19,8 +19,9 @@ for (let i = 0; i < categoryPath.length; i++) {
const filePath = path.join(commandsPath, file);
const command = await import(filePath);
if (command.default.data.name === 'download') {
Object.assign(command.default.data, { integration_types: [0, 1] });
if (command.default.integration_types) {
Object.assign(command.default.data, { integration_types: command.default.integration_types });
Object.assign(command.default.data, { contexts: [0, 1, 2] });
}
commands.push(command.default.data.toJSON());
}

Loading…
Cancel
Save