1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-02-24 02:19:43 +00:00

14 lines
490 B
JavaScript
Raw Normal View History

module.exports = {
name: 'save',
2024-02-09 11:53:30 +02:00
async execute(message, args, client, prefix) {
const serverQueue = client.queue.get(message.guild.id);
if (!serverQueue) return message.channel.send(':x: There is nothing playing!');
client.global.db.playlists[message.guild.id] = {
songs: serverQueue.songs,
firstSong: serverQueue.songs[0],
saved: true,
};
message.channel.send(":white_check_mark: Queue saved!");
}
2024-02-09 11:53:30 +02:00
};