Missing await
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 @@
`**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")