diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/commands/dev/superUser.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/evidence.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/highlight-add.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/highlight-block.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/highlight-clear.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/highlight-remove.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/highlight-show.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/highlight-unblock.ts | 2 | ||||
-rw-r--r-- | src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.ts | 6 | ||||
-rw-r--r-- | src/lib/extensions/discord.js/BushClientUser.ts | 2 | ||||
-rw-r--r-- | src/lib/utils/BushLogger.ts | 2 |
11 files changed, 13 insertions, 13 deletions
diff --git a/src/commands/dev/superUser.ts b/src/commands/dev/superUser.ts index b184f6f..56bc4b1 100644 --- a/src/commands/dev/superUser.ts +++ b/src/commands/dev/superUser.ts @@ -1,6 +1,6 @@ import { BushCommand, type ArgType, type BushMessage } from '#lib'; import { ArgumentGeneratorReturn } from 'discord-akairo'; -import { ArgumentTypeCasterReturn } from 'discord-akairo/dist/src/struct/commands/arguments/Argument'; +import { ArgumentTypeCasterReturn } from 'discord-akairo/dist/src/struct/commands/arguments/Argument.js'; export default class SuperUserCommand extends BushCommand { public constructor() { diff --git a/src/commands/moderation/evidence.ts b/src/commands/moderation/evidence.ts index 444a173..23ccf59 100644 --- a/src/commands/moderation/evidence.ts +++ b/src/commands/moderation/evidence.ts @@ -1,6 +1,6 @@ import { BushCommand, ModLog, type BushMessage, type BushSlashMessage } from '#lib'; import { ArgumentGeneratorReturn } from 'discord-akairo'; -import { ArgumentTypeCasterReturn } from 'discord-akairo/dist/src/struct/commands/arguments/Argument'; +import { ArgumentTypeCasterReturn } from 'discord-akairo/dist/src/struct/commands/arguments/Argument.js'; import { ApplicationCommandOptionType, PermissionFlagsBits } from 'discord.js'; export default class EvidenceCommand extends BushCommand { diff --git a/src/commands/utilities/highlight-add.ts b/src/commands/utilities/highlight-add.ts index ec5443c..316a931 100644 --- a/src/commands/utilities/highlight-add.ts +++ b/src/commands/utilities/highlight-add.ts @@ -1,7 +1,7 @@ import { AllowedMentions, BushCommand, Highlight, type ArgType, type BushMessage, type BushSlashMessage } from '#lib'; import assert from 'assert'; import { ArgumentGeneratorReturn } from 'discord-akairo'; -import { highlightCommandArgs, highlightSubcommands } from './highlight-!'; +import { highlightCommandArgs, highlightSubcommands } from './highlight-!.js'; export default class HighlightAddCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/highlight-block.ts b/src/commands/utilities/highlight-block.ts index 5a18b8a..f546958 100644 --- a/src/commands/utilities/highlight-block.ts +++ b/src/commands/utilities/highlight-block.ts @@ -2,7 +2,7 @@ import { AllowedMentions, BushCommand, Highlight, type ArgType, type BushMessage import assert from 'assert'; import { Argument, ArgumentGeneratorReturn } from 'discord-akairo'; import { Channel, GuildMember } from 'discord.js'; -import { highlightCommandArgs, highlightSubcommands } from './highlight-!'; +import { highlightCommandArgs, highlightSubcommands } from './highlight-!.js'; export default class HighlightBlockCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/highlight-clear.ts b/src/commands/utilities/highlight-clear.ts index aded467..e1cce2d 100644 --- a/src/commands/utilities/highlight-clear.ts +++ b/src/commands/utilities/highlight-clear.ts @@ -1,6 +1,6 @@ import { AllowedMentions, BushCommand, ConfirmationPrompt, Highlight, type BushMessage, type BushSlashMessage } from '#lib'; import assert from 'assert'; -import { highlightSubcommands } from './highlight-!'; +import { highlightSubcommands } from './highlight-!.js'; export default class HighlightClearCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/highlight-remove.ts b/src/commands/utilities/highlight-remove.ts index 0432a16..1f7c4c0 100644 --- a/src/commands/utilities/highlight-remove.ts +++ b/src/commands/utilities/highlight-remove.ts @@ -1,7 +1,7 @@ import { AllowedMentions, BushCommand, Highlight, type ArgType, type BushMessage, type BushSlashMessage } from '#lib'; import assert from 'assert'; import { ArgumentGeneratorReturn } from 'discord-akairo'; -import { highlightCommandArgs, highlightSubcommands } from './highlight-!'; +import { highlightCommandArgs, highlightSubcommands } from './highlight-!.js'; export default class HighlightRemoveCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/highlight-show.ts b/src/commands/utilities/highlight-show.ts index ab7c0c5..b9f414f 100644 --- a/src/commands/utilities/highlight-show.ts +++ b/src/commands/utilities/highlight-show.ts @@ -1,7 +1,7 @@ import { AllowedMentions, BushCommand, Highlight, type BushMessage, type BushSlashMessage } from '#lib'; import assert from 'assert'; import { Embed } from 'discord.js'; -import { highlightSubcommands } from './highlight-!'; +import { highlightSubcommands } from './highlight-!.js'; export default class HighlightShowCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/highlight-unblock.ts b/src/commands/utilities/highlight-unblock.ts index 7e5c0fb..475aab0 100644 --- a/src/commands/utilities/highlight-unblock.ts +++ b/src/commands/utilities/highlight-unblock.ts @@ -2,7 +2,7 @@ import { AllowedMentions, BushCommand, Highlight, type ArgType, type BushMessage import assert from 'assert'; import { Argument, ArgumentGeneratorReturn } from 'discord-akairo'; import { Channel, GuildMember } from 'discord.js'; -import { highlightCommandArgs, highlightSubcommands } from './highlight-!'; +import { highlightCommandArgs, highlightSubcommands } from './highlight-!.js'; export default class HighlightUnblockCommand extends BushCommand { public constructor() { diff --git a/src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.ts b/src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.ts index 2ffb2fd..1ebefee 100644 --- a/src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.ts +++ b/src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.ts @@ -1,7 +1,7 @@ import { BaseGuildVoiceChannel, Collection, Snowflake } from 'discord.js'; -import { BushCategoryChannel } from './BushCategoryChannel'; -import { BushGuild } from './BushGuild'; -import { BushGuildMember } from './BushGuildMember'; +import { BushCategoryChannel } from './BushCategoryChannel.js'; +import { BushGuild } from './BushGuild.js'; +import { BushGuildMember } from './BushGuildMember.js'; /** * Represents a voice-based guild channel on Discord. diff --git a/src/lib/extensions/discord.js/BushClientUser.ts b/src/lib/extensions/discord.js/BushClientUser.ts index a9a47f9..cee9808 100644 --- a/src/lib/extensions/discord.js/BushClientUser.ts +++ b/src/lib/extensions/discord.js/BushClientUser.ts @@ -8,7 +8,7 @@ import type { PresenceData, PresenceStatusData } from 'discord.js'; -import { BushUser } from './BushUser'; +import { BushUser } from './BushUser.js'; /** * Represents the logged in client's Discord user. diff --git a/src/lib/utils/BushLogger.ts b/src/lib/utils/BushLogger.ts index 9fcc059..dc43a4f 100644 --- a/src/lib/utils/BushLogger.ts +++ b/src/lib/utils/BushLogger.ts @@ -2,7 +2,7 @@ import chalk from 'chalk'; // eslint-disable-next-line @typescript-eslint/no-unused-vars import { Embed, Util, type Message, type PartialTextBasedChannelFields } from 'discord.js'; import { inspect } from 'util'; -import { type BushSendMessageType } from '../extensions/discord-akairo/BushClient'; +import { type BushSendMessageType } from '../extensions/discord-akairo/BushClient.js'; /** * Custom logging utility for the bot. |