Skip to content

Commit

Permalink
🎨 Format the code
Browse files Browse the repository at this point in the history
  • Loading branch information
karafra committed Jul 10, 2022
1 parent c905066 commit 58b2238
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ export class Main {
Intents.FLAGS.GUILD_MEMBERS,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
Intents.FLAGS.GUILD_VOICE_STATES,
Intents.FLAGS.GUILD_VOICE_STATES
],
botGuilds: [(client) => client.guilds.cache.map((guild) => guild.id)],
silent: environment === 'production' ? undefined : false,
silent: environment === 'production' ? undefined : false
})
await importx(`${__dirname}/commands/**/*.{ts,js}`)
await importx(`${__dirname}/events/**/*.{ts,js}`)
Expand All @@ -63,7 +63,7 @@ export class Main {

// Bot Actions
Main.Client.user?.setActivity(`@${Main.Client.user.username} • /help`, {
type: 'LISTENING',
type: 'LISTENING'
})
logger.info(chalk.bold('BOT READY'))
})
Expand Down

0 comments on commit 58b2238

Please sign in to comment.