diff options
Diffstat (limited to 'src/commands/fun/eightBall.ts')
-rw-r--r-- | src/commands/fun/eightBall.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/fun/eightBall.ts b/src/commands/fun/eightBall.ts index d6b0b8c..b4d2fbe 100644 --- a/src/commands/fun/eightBall.ts +++ b/src/commands/fun/eightBall.ts @@ -3,11 +3,11 @@ import { BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; export default class EightBallCommand extends BushCommand { public constructor() { super('eightBall', { - aliases: ['8ball', 'eightball'], + aliases: ['eightball', '8ball'], category: 'fun', description: 'Ask questions for a randomly generated response.', - usage: ['8Ball <question>'], - examples: ['8Ball does anyone love me?'], + usage: ['eightball <question>'], + examples: ['eightball does anyone love me?'], args: [ { id: 'question', |