Move moon button events to server id folder
This commit is contained in:
parent
43751e5b02
commit
67eafa695c
4 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
import {ButtonInteraction} from "discord.js";
|
||||
import {ButtonEvent} from "../type/buttonEvent";
|
||||
import {ButtonEvent} from "../../type/buttonEvent";
|
||||
import List from "./moons/list";
|
||||
|
||||
export default class Moons extends ButtonEvent {
|
|
@ -1,7 +1,7 @@
|
|||
import {ActionRowBuilder, ButtonBuilder, ButtonInteraction, ButtonStyle, EmbedBuilder} from "discord.js";
|
||||
import Moon from "../../database/entities/304276391837302787/Moon";
|
||||
import EmbedColours from "../../constants/EmbedColours";
|
||||
import UserSetting from "../../database/entities/UserSetting";
|
||||
import Moon from "../../../database/entities/304276391837302787/Moon";
|
||||
import EmbedColours from "../../../constants/EmbedColours";
|
||||
import UserSetting from "../../../database/entities/UserSetting";
|
||||
|
||||
export default async function List(interaction: ButtonInteraction) {
|
||||
if (!interaction.guild) return;
|
|
@ -42,7 +42,7 @@ import MessageCreate from "./events/MessageEvents/MessageCreate";
|
|||
|
||||
// Button Event Imports
|
||||
import Verify from "./buttonEvents/verify";
|
||||
import MoonsButtonEvent from "./buttonEvents/moons";
|
||||
import MoonsButtonEvent from "./buttonEvents/304276391837302787/moons";
|
||||
|
||||
export default class Registry {
|
||||
public static RegisterCommands() {
|
||||
|
|
Loading…
Reference in a new issue