1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-06-16 15:46:00 +00:00

Updated everything

This commit is contained in:
MatteZ02
2019-09-15 09:18:33 +03:00
parent 9d7e55b5ee
commit e4e99d76c9
1064 changed files with 277 additions and 171372 deletions

9
events/guildcreate.js Normal file
View File

@ -0,0 +1,9 @@
module.exports = {
name: 'guildcreate',
async execute(client, guild) {
musix.user.setActivity(`music to ${client.users.size} users!`, { type: 'PLAYING' });
client.db.collection('musix_guilds').doc(guild.id).set({
musix_prefix: '>',
});
}
}