UNPKG

dbd.js-new

Version:

dbd.js-new - Simplifica la programación de un bot de discord, dbd.js-new es una versión de dbd.js con soporte

32 lines (26 loc) 728 B
const interpreter = require("../interpreter"); module.exports = async (client, server, old) => { for (const command of client.music_end_commands.array()) { const data = { author: undefined, member: undefined, channel: server.text, guild: server.text.guild, }; //support const id = await interpreter( client, data, [], { channel: command.channel, code: command.channel, }, undefined, true ); const channel = client.channels.cache.get(`${id}`); if (!channel) return console.error(`channel with ID ${id} does not exist`); data.channel = channel; await interpreter(client, data, [], command, undefined); } };