diff --git a/src/index.js b/src/index.js index ea262b9..5810ddf 100644 --- a/src/index.js +++ b/src/index.js @@ -1,4 +1,4 @@ -const { REST, Routes, Client, Collection, GatewayIntentBits, Events, Partials, InteractionType } = require("discord.js"); +const { REST, Routes, Client, Collection, GatewayIntentBits, Events, Partials, InteractionType, ActivityType } = require("discord.js"); const { default: Groq } = require("groq-sdk"); const { knex } = require("./db.js"); const path = require("node:path"); @@ -73,6 +73,11 @@ client.on(Events.InteractionCreate, async interaction => { client.once(Events.ClientReady, async () => { console.log(`Ready! Logged in as ${client.user.displayName}`); + client.user.setActivity({ + name: "kissing my sister", + state: "dnd", + type: ActivityType.Custom + }) if (!(await knex.schema.hasTable("blacklists"))) await knex.schema.createTable("blacklists", function (table) {