Merge pull request 'kms' (#8) from dev into mistress
Reviewed-on: https://git.incest.world/sisterkissers/discord-bot/pulls/8
This commit is contained in:
commit
a666b8f88e
1 changed files with 6 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue