mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
module.exports = {
|
|
name: 'delete',
|
|
async execute(message, args, client, prefix) {
|
|
client.global.db.playlists[message.guild.id] = {
|
|
songs: [],
|
|
firstSong: undefined,
|
|
saved: false,
|
|
};
|
|
message.channel.send(':wastebasket: Deleted the playlist.');
|
|
}
|
|
};
|