19 lines
No EOL
496 B
TypeScript
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);
|
|
}
|
|
} |