I hate that this is needed... sapphire... fix your shit
This commit is contained in:
@ -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']
|
||||
|
@ -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!'
|
||||
})
|
||||
|
@ -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!'
|
||||
})
|
||||
|
@ -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!'
|
||||
})
|
||||
|
@ -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.'
|
||||
})
|
||||
|
@ -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'],
|
||||
|
@ -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!'
|
||||
})
|
||||
|
@ -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'],
|
||||
|
@ -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!'
|
||||
})
|
||||
|
@ -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!'
|
||||
})
|
||||
|
@ -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."
|
||||
})
|
||||
|
@ -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']
|
||||
|
@ -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']
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user