Skip to content

Commit 3ed1ca0

Browse files
authored
[FIX] Remove Emoji In InternalError Because Of Circular Imports (#62)
1 parent 1b1d22a commit 3ed1ca0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/errors/InternalError.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { EmbedBuilder } from "@discordjs/builders";
22
import type { MessageReplyOptions } from "discord.js";
33

44
import { EmbedColors } from "../assets/colors/colors";
5-
import { Configs } from "../config/Configs";
65
import { core } from "../core/Core";
76
import { AppError } from "./AppError";
87

@@ -15,7 +14,7 @@ export abstract class InternalError extends AppError {
1514
embeds: [
1615
new EmbedBuilder()
1716
.setTitle("Internal Error Occurred")
18-
.setDescription(`This is not your fault. It is ours. ${Configs.emoji.WORRIED}`)
17+
.setDescription(`This is not your fault. It is ours.`)
1918
.setColor(EmbedColors.RED)
2019
.addFields(
2120
{

0 commit comments

Comments
 (0)