Perm levels fixed, guild create/delete

This commit is contained in:
Emily 2020-04-04 20:16:05 +11:00
parent a82c054ce3
commit 4b66acc01d
11 changed files with 49 additions and 12 deletions

View file

@ -5,8 +5,7 @@ module.exports = async (client, guild) => {
// Create DB entry for newly joined guild
try {
const newGuild = {
guildID: guild.id,
guildName: guild.name
guildID: guild.id
}
await client.createGuild(newGuild)
} catch (err) {