bugfix: adjusted relative paths from major refactor

This commit is contained in:
Baipyrus 2024-04-05 10:30:41 +02:00
parent aed1d8472e
commit 7672748ac8
6 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@ import {
SlashCommandBuilder,
ChatInputCommandInteraction
} from 'discord.js';
import { Guilds, VoiceChannels } from '../../../database.js';
import { Guilds, VoiceChannels } from '../../database.js';
export const data = new SlashCommandBuilder()
.setName('custom_vc')

View File

@ -1,5 +1,5 @@
import { SlashCommandBuilder, PermissionFlagsBits, ChatInputCommandInteraction } from 'discord.js';
import { Roles, Guilds } from '../../../database.js';
import { Roles, Guilds } from '../../database.js';
/**
* @param {Guilds} guild

View File

@ -9,7 +9,7 @@ import {
ContextMenuCommandBuilder,
ContextMenuCommandInteraction
} from 'discord.js';
import { addSelfRoles } from '../../../../shared.js';
import { addSelfRoles } from '../../../shared.js';
export const data = new ContextMenuCommandBuilder()
.setDMPermission(false)

View File

@ -4,7 +4,7 @@ import {
PermissionFlagsBits,
ContextMenuCommandInteraction
} from 'discord.js';
import { Messages } from '../../../../database.js';
import { Messages } from '../../../database.js';
export const data = new ContextMenuCommandBuilder()
.setDMPermission(false)

View File

@ -4,7 +4,7 @@ import {
PermissionFlagsBits,
ContextMenuCommandInteraction
} from 'discord.js';
import { removeSelfRoles } from '../../../../shared.js';
import { removeSelfRoles } from '../../../shared.js';
export const data = new ContextMenuCommandBuilder()
.setDMPermission(false)

View File

@ -1,6 +1,6 @@
import { PermissionFlagsBits, SlashCommandBuilder, ChatInputCommandInteraction } from 'discord.js';
import { addSelfRoles, removeSelfRoles } from '../../../shared.js';
import { Guilds, Messages } from '../../../database.js';
import { addSelfRoles, removeSelfRoles } from '../../shared.js';
import { Guilds, Messages } from '../../database.js';
/**
* Sends a `Message` in the current channel and registers for self roles.