diff --git a/src/commands/counters/index.ts b/src/commands/counters/index.ts index b9c9fb3..e70e460 100644 --- a/src/commands/counters/index.ts +++ b/src/commands/counters/index.ts @@ -1,7 +1,7 @@ import { SlashCommandBuilder } from "@discordjs/builders"; import { ChatInputCommandInteraction } from "discord.js"; -import modules from "../commands/counters/modules"; +import modules from "./modules"; export const builder = new SlashCommandBuilder() .setName("counters") diff --git a/src/commands/fun/index.ts b/src/commands/fun/index.ts index ccd275a..8c166f0 100644 --- a/src/commands/fun/index.ts +++ b/src/commands/fun/index.ts @@ -2,7 +2,7 @@ import { SlashCommandBuilder } from "@discordjs/builders"; import { ChatInputCommandInteraction } from "discord.js"; import logger from "../../middlewares/logger"; -import modules from "../commands/fun/modules"; +import modules from "./modules"; export const builder = new SlashCommandBuilder() .setName("fun") diff --git a/src/commands/manage/index.ts b/src/commands/manage/index.ts index e09f024..d488bd1 100644 --- a/src/commands/manage/index.ts +++ b/src/commands/manage/index.ts @@ -3,7 +3,7 @@ import { SlashCommandBuilder } from "@discordjs/builders"; import { ChatInputCommandInteraction } from "discord.js"; // Groups -import modules from "../commands/manage/modules"; +import modules from "./modules"; export const moduleData = modules;