1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-02-23 23:09:44 +00:00

12 lines
319 B
JavaScript
Raw Normal View History

2019-11-19 18:08:00 +02:00
module.exports = {
2019-11-19 18:10:20 +02:00
name: 'delete',
2024-02-09 11:53:30 +02:00
async execute(message, args, client, prefix) {
2019-11-19 18:08:00 +02:00
client.global.db.playlists[message.guild.id] = {
songs: [],
firstSong: undefined,
saved: false,
};
2019-11-20 08:05:01 +02:00
message.channel.send(':wastebasket: Deleted the playlist.');
2019-11-19 18:08:00 +02:00
}
2024-02-09 11:53:30 +02:00
};