kms
This commit is contained in:
parent
2a84e74cda
commit
24334a94f4
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 { default: Groq } = require("groq-sdk");
|
||||||
const { knex } = require("./db.js");
|
const { knex } = require("./db.js");
|
||||||
const path = require("node:path");
|
const path = require("node:path");
|
||||||
|
@ -73,6 +73,11 @@ client.on(Events.InteractionCreate, async interaction => {
|
||||||
|
|
||||||
client.once(Events.ClientReady, async () => {
|
client.once(Events.ClientReady, async () => {
|
||||||
console.log(`Ready! Logged in as ${client.user.displayName}`);
|
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")))
|
if (!(await knex.schema.hasTable("blacklists")))
|
||||||
await knex.schema.createTable("blacklists", function (table) {
|
await knex.schema.createTable("blacklists", function (table) {
|
||||||
|
|
Loading…
Reference in a new issue