Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/errors/InternalError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { EmbedBuilder } from "@discordjs/builders";
import type { MessageReplyOptions } from "discord.js";

import { EmbedColors } from "../assets/colors/colors";
import { Configs } from "../config/Configs";
import { core } from "../core/Core";
import { AppError } from "./AppError";

Expand All @@ -15,7 +14,7 @@ export abstract class InternalError extends AppError {
embeds: [
new EmbedBuilder()
.setTitle("Internal Error Occurred")
.setDescription(`This is not your fault. It is ours. ${Configs.emoji.WORRIED}`)
.setDescription(`This is not your fault. It is ours.`)
.setColor(EmbedColors.RED)
.addFields(
{
Expand Down
Loading