I hate that this is needed... sapphire... fix your shit

This commit is contained in:
2023-09-07 00:18:03 -06:00
parent e0be6dfabf
commit 055f441433
17 changed files with 30 additions and 14 deletions

View File

@ -7,6 +7,8 @@ const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY
});
// @ts-ignore
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'You can ACTUALLY ask Himbot something! So cool!',
options: ['prompt']

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Borf! Borf!'
})

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Check how many credits I have left!'
})

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Dad joke for daddies only!'
})

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Disclosures for privacy.'
})

View File

@ -4,6 +4,7 @@ import { AttachmentBuilder, Message } from 'discord.js';
// This is literally the worlds messiest TS code. Please don't judge me...
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Make a picture... but high res!',
options: ['prompt', 'number of pictures'],

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Meow!'
})

View File

@ -4,6 +4,7 @@ import { AttachmentBuilder, Message } from 'discord.js';
// This is literally the worlds messiest TS code. Please don't judge me...
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Make a picture!',
options: ['prompt', 'amount'],

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Pong!'
})

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Quack!'
})

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: "Help support HimBot's AI features."
})

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Args, Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'This command is the title of your sextape.',
options: ['title']

View File

@ -2,6 +2,7 @@ import { ApplyOptions } from '@sapphire/decorators';
import { Args, Command } from '@sapphire/framework';
import { Message } from 'discord.js';
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'This command was your nickname in highschool!',
options: ['nickname']

View File

@ -4,6 +4,7 @@ import { blue, gray, green, magenta, magentaBright, white, yellow } from 'colore
const dev = process.env.NODE_ENV !== 'production';
// @ts-ignore
@ApplyOptions<Listener.Options>({ once: true })
export class UserEvent extends Listener {
private readonly style = dev ? yellow : blue;