From 73e2e6c6e0827e5891826f184ac4062d75f98d99 Mon Sep 17 00:00:00 2001 From: PineaFan Date: Wed, 18 Jan 2023 14:41:51 +0000 Subject: [PATCH] Missing await --- src/actions/createModActionTicket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/createModActionTicket.ts b/src/actions/createModActionTicket.ts index bdc5e07..481666b 100644 --- a/src/actions/createModActionTicket.ts +++ b/src/actions/createModActionTicket.ts @@ -63,7 +63,7 @@ export async function create( `**Support type:** ${customReason ? customReason : "Appeal submission"}\n` + (reason !== null ? `**Reason:**\n> ${reason}\n` : "") + `**Ticket ID:** \`${c.id}\`\n` + - `Type ${getCommandMentionByName("ticket/close")} to close this ticket.` + `Type ${await getCommandMentionByName("ticket/close")} to close this ticket.` ) .setStatus("Success") .setEmoji("GUILD.TICKET.OPEN")