aboutsummaryrefslogtreecommitdiff
path: root/bot.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-07-17 18:18:40 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-07-17 18:18:40 -0400
commitb9f0816dd7ac09d28a8baae9ae58e871a59c8a7c (patch)
treebf0859a4c321cf1321e2732fc51f4c9162a6c8e5 /bot.js
parent8ce71120f31fd8f590bd7b3f2247ea65450da01d (diff)
downloadDLAP-b9f0816dd7ac09d28a8baae9ae58e871a59c8a7c.tar.gz
DLAP-b9f0816dd7ac09d28a8baae9ae58e871a59c8a7c.tar.bz2
DLAP-b9f0816dd7ac09d28a8baae9ae58e871a59c8a7c.zip
Eslinting some stuff
Diffstat (limited to 'bot.js')
-rw-r--r--bot.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot.js b/bot.js
index 6321257..0cd0823 100644
--- a/bot.js
+++ b/bot.js
@@ -25,7 +25,7 @@ import { webServer } from './WebStream.js';
// import config from './config.json' assert { type: 'json' } Not supported by ESLint yet
const { token, statusChannel, voiceChannel, shuffle } = JSON.parse(readFileSync('./config.json'));
-const bot = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildVoiceStates ]});
+const bot = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildVoiceStates] });
bot.login(token);
// webServer();