1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-03-13 13:51:33 +00:00
musix-oss/events/guildcreate.js

16 lines
389 B
JavaScript
Raw Normal View History

2019-09-15 09:18:33 +03:00
module.exports = {
name: 'guildcreate',
async execute(client, guild) {
2019-10-10 16:43:04 +03:00
client.db.collection('guilds').doc(guild.id).set({
2019-10-11 11:48:50 +03:00
prefix: '>',
2019-10-10 16:43:04 +03:00
defaultVolume: 5,
2019-10-11 11:48:50 +03:00
permissions: false,
2019-09-15 09:18:33 +03:00
});
2019-10-11 11:48:50 +03:00
client.global.db.guilds[guild.id] = {
prefix: ">",
2019-10-10 16:43:04 +03:00
defaultVolume: 5,
2019-10-11 11:48:50 +03:00
permissions: false,
2019-10-10 16:43:04 +03:00
};
2019-09-15 09:18:33 +03:00
}
2019-10-10 16:43:04 +03:00
}