mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
|
module.exports = {
|
||
|
name: 'setpremium',
|
||
|
async execute(message, args, client, Discord, prefix) {
|
||
|
client.global.db.playlists[message.guild.id] = {
|
||
|
songs: [],
|
||
|
firstSong: undefined,
|
||
|
saved: false,
|
||
|
};
|
||
|
message.channel.send(':white_check_mark: This guild is now premium! :tada:')
|
||
|
}
|
||
|
};
|