From 747b3c8302245699294b671d19b3d31d63f80bc1 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 27 Jun 2021 18:08:14 -0400 Subject: did this a while ago so I don't remeber what I did --- src/listeners/commands/slashBlocked.ts | 2 +- src/listeners/commands/slashCommandError.ts | 2 +- src/listeners/commands/slashStarted.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/listeners/commands') diff --git a/src/listeners/commands/slashBlocked.ts b/src/listeners/commands/slashBlocked.ts index e64253a..761bef8 100644 --- a/src/listeners/commands/slashBlocked.ts +++ b/src/listeners/commands/slashBlocked.ts @@ -1,6 +1,6 @@ import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; import { BushListener } from '../../lib/extensions/BushListener'; +import { BushSlashMessage } from '../../lib/extensions/BushSlashMessage'; export default class SlashBlockedListener extends BushListener { public constructor() { diff --git a/src/listeners/commands/slashCommandError.ts b/src/listeners/commands/slashCommandError.ts index 1a5f293..da00eb4 100644 --- a/src/listeners/commands/slashCommandError.ts +++ b/src/listeners/commands/slashCommandError.ts @@ -1,8 +1,8 @@ import { stripIndents } from 'common-tags'; import { MessageEmbed } from 'discord.js'; import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; import { BushListener } from '../../lib/extensions/BushListener'; +import { BushSlashMessage } from '../../lib/extensions/BushSlashMessage'; export default class SlashCommandErrorListener extends BushListener { constructor() { diff --git a/src/listeners/commands/slashStarted.ts b/src/listeners/commands/slashStarted.ts index c6b966a..534d89d 100644 --- a/src/listeners/commands/slashStarted.ts +++ b/src/listeners/commands/slashStarted.ts @@ -1,6 +1,6 @@ import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; import { BushListener } from '../../lib/extensions/BushListener'; +import { BushSlashMessage } from '../../lib/extensions/BushSlashMessage'; export default class SlashStartedListener extends BushListener { constructor() { -- cgit