From e51be71148c400e7058f91feeecd54616c9e4192 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 27 Apr 2024 10:05:51 -0400 Subject: [PATCH] Fix report-respond --- commands/util/report-respond.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util/report-respond.js b/commands/util/report-respond.js index 6bc581cb..6d88109f 100644 --- a/commands/util/report-respond.js +++ b/commands/util/report-respond.js @@ -1,7 +1,7 @@ const Command = require('../../framework/Command'); const { EmbedBuilder } = require('discord.js'); const types = ['reject', 'info', 'approve']; -const typesColors = ['RED', 'YELLOW', 'GREEN']; +const typesColors = ['Red', 'Yellow', 'Green']; const displaytypes = ['❌ Rejected', '❓ Need More Info', '✅ Accepted/Fixed']; module.exports = class ReportRespondCommand extends Command {