i change
if (!this.botconfig["24/7"]) player.destroy();
});
}
to
if (!this.botconfig["24/7"]) {
setTimeout(() => {
if (player.paused || player.playing || player.queue.length > 0) return;
player.destroy();
}, 2 * 60 * 1000 //time in milliseconds ;-;
);
}
why SyntaxError: Unexpected token '{' please help me