vylbot-app/src/helpers/embeds/ErrorEmbed.ts
2022-03-23 18:30:02 +00:00

19 lines
No EOL
496 B
TypeScript

import { MessageEmbed } from "discord.js";
import { ICommandContext } from "../../contracts/ICommandContext";
export default class ErrorEmbed extends MessageEmbed {
public context: ICommandContext;
constructor(context: ICommandContext, message: String) {
super();
super.setColor(0xd52803);
super.setDescription(message);
this.context = context;
}
public SendToCurrentChannel() {
this.context.message.channel.send(this);
}
}