diff --git a/commands/nowplaying.ts b/commands/nowplaying.ts index c6055d5..f42645b 100644 --- a/commands/nowplaying.ts +++ b/commands/nowplaying.ts @@ -1,5 +1,5 @@ import { commandModule, CommandType } from '@sern/handler'; -import { publish } from '#plugins'; +import { publish } from '../plugins/index.js'; import { ActionRowBuilder, ComponentType, EmbedBuilder, StringSelectMenuBuilder } from 'discord.js'; import axios from 'axios'; import progressbar from 'string-progressbar' diff --git a/commands/play.ts b/commands/play.ts index 0e7fdf2..6f41a18 100644 --- a/commands/play.ts +++ b/commands/play.ts @@ -1,5 +1,5 @@ import { commandModule, CommandType } from '@sern/handler'; -import { publish } from '#plugins'; +import { publish } from '../plugins/index.js'; import { createAudioPlayer, createAudioResource, diff --git a/commands/stick.ts b/commands/stick.ts index 9afcf47..1e99cde 100644 --- a/commands/stick.ts +++ b/commands/stick.ts @@ -1,7 +1,7 @@ import { commandModule, CommandType } from '@sern/handler'; import { ApplicationCommandOptionType, GuildMember } from 'discord.js'; import { prisma } from '../index.js'; -import { publish } from '#plugins'; +import { publish } from '../plugins/index.js'; export default commandModule({ type: CommandType.Slash, diff --git a/commands/stop.ts b/commands/stop.ts index 0c5809f..f467459 100644 --- a/commands/stop.ts +++ b/commands/stop.ts @@ -1,5 +1,5 @@ import { commandModule, CommandType } from '@sern/handler'; -import { publish } from '#plugins'; +import { publish } from '../plugins/index.js'; import { getVoiceConnection } from '@discordjs/voice' import type { GuildMember } from 'discord.js'; diff --git a/commands/unstick.ts b/commands/unstick.ts index 25247d8..0d94919 100644 --- a/commands/unstick.ts +++ b/commands/unstick.ts @@ -1,5 +1,5 @@ import { commandModule, CommandType } from '@sern/handler'; -import { publish } from '#plugins'; +import { publish } from '../plugins/index.js'; import { prisma } from '../index.js'; import { getVoiceConnection } from '@discordjs/voice'