aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/BushCommand.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/extensions/BushCommand.ts')
-rw-r--r--src/lib/extensions/BushCommand.ts9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/extensions/BushCommand.ts b/src/lib/extensions/BushCommand.ts
index 9de2c95..edd3c31 100644
--- a/src/lib/extensions/BushCommand.ts
+++ b/src/lib/extensions/BushCommand.ts
@@ -2,7 +2,7 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { Command, CommandOptions } from 'discord-akairo';
import { APIApplicationCommandOption } from 'discord-api-types';
-import { CommandInteraction, Snowflake } from 'discord.js';
+import { Snowflake } from 'discord.js';
import { BushClient } from './BushClient';
import { BushInteractionMessage } from './BushInteractionMessage';
import { BushMessage } from './BushMessage';
@@ -42,11 +42,4 @@ export class BushCommand extends Command {
// @ts-ignore: They are close enough
super.exec(message, args);
}
-
- /** Be careful when using this with a slash command since only the interaction is parsed as the message */
- public before(message: BushMessage): any;
- public before(message: BushMessage | CommandInteraction): any;
- public before(message) {
- super.before(message);
- }
}