Migrate clear command

This commit is contained in:
Ethan Lane 2021-11-29 11:46:16 +00:00
parent ecf9c5e4fc
commit be329d709f
Signed by: Vylpes
GPG key ID: EED233CC06D12504
4 changed files with 38 additions and 60 deletions

View file

@ -9,7 +9,7 @@ export default class LogEmbed extends MessageEmbed {
constructor(context: ICommandContext, title: string) {
super();
super.setColor(process.env.ERROR_EMBED!);
super.setColor(process.env.EMBED_COLOUR!);
super.setTitle(title);
this._context = context;

View file

@ -7,7 +7,7 @@ export default class PublicEmbed extends MessageEmbed {
constructor(context: ICommandContext, title: string, description: string) {
super();
super.setColor(process.env.ERROR_EMBED!);
super.setColor(process.env.EMBED_COLOUR!);
super.setTitle(title);
super.setDescription(description);