diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-04-02 02:21:41 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-04-02 02:21:41 -0400 |
| commit | 10434adad478d21bbb834a5803125db9f54c9d6c (patch) | |
| tree | e1159a26948d24c2a065dfd15f71b64970515930 /bot/src/bot.js | |
| parent | 657599acccf351c7c9366cec9f648b7496c89bdb (diff) | |
| download | AleeBot-10434adad478d21bbb834a5803125db9f54c9d6c.tar.gz AleeBot-10434adad478d21bbb834a5803125db9f54c9d6c.tar.bz2 AleeBot-10434adad478d21bbb834a5803125db9f54c9d6c.zip | |
Added i18n (basic); Blacklist feature; Put error msg into a filebeta
Diffstat (limited to 'bot/src/bot.js')
| -rw-r--r-- | bot/src/bot.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/bot.js b/bot/src/bot.js index c301234..bba8eaf 100644 --- a/bot/src/bot.js +++ b/bot/src/bot.js @@ -3,7 +3,7 @@ import 'dotenv/config'; import { init } from './init.js'; const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent, GatewayIntentBits.GuildBans] }); -init(client); +void init(client); client.login(process.env.TOKEN).then(() => { console.log('[>] Successfully authenticated.'); |
