We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b1d22a commit 3ed1ca0Copy full SHA for 3ed1ca0
1 file changed
src/errors/InternalError.ts
@@ -2,7 +2,6 @@ import { EmbedBuilder } from "@discordjs/builders";
2
import type { MessageReplyOptions } from "discord.js";
3
4
import { EmbedColors } from "../assets/colors/colors";
5
-import { Configs } from "../config/Configs";
6
import { core } from "../core/Core";
7
import { AppError } from "./AppError";
8
@@ -15,7 +14,7 @@ export abstract class InternalError extends AppError {
15
14
embeds: [
16
new EmbedBuilder()
17
.setTitle("Internal Error Occurred")
18
- .setDescription(`This is not your fault. It is ours. ${Configs.emoji.WORRIED}`)
+ .setDescription(`This is not your fault. It is ours.`)
19
.setColor(EmbedColors.RED)
20
.addFields(
21
{
0 commit comments