From 1e907ee0ff1542ef84310d1562eb474cc3c56d65 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Tue, 17 Dec 2024 15:26:46 +0100 Subject: [PATCH] CommandHandler: Add missing closing quote in interaction log --- src/commandHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commandHandler.ts b/src/commandHandler.ts index 959f753..f58d4fc 100644 --- a/src/commandHandler.ts +++ b/src/commandHandler.ts @@ -74,7 +74,7 @@ export default class CommandHandler { interaction, (_, v) => (typeof v === "bigint" ? `${v.toString()}n` : v), 4 - )} from '${interaction.user.tag}`; + )} from '${interaction.user.tag}'`; console.log(msg); if (!interaction.isCommand()) throw new Error("Invalid command interaction");