From 4c92867bcf494bad18dc7f6da13a84810d0e0339 Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Thu, 20 Oct 2022 11:01:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20correct=20more=20paths?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/counters/index.ts | 2 +- src/commands/fun/index.ts | 2 +- src/commands/manage/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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;