From ac63e6f6479a57c7e709c1de884e55886b018fee Mon Sep 17 00:00:00 2001 From: Tarrgon <61888458+Tarrgon@users.noreply.github.com> Date: Sat, 7 Jun 2025 10:06:45 -0400 Subject: [PATCH] Edit added note message --- src/commands/notes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/notes.ts b/src/commands/notes.ts index 37ad9d1..8791855 100644 --- a/src/commands/notes.ts +++ b/src/commands/notes.ts @@ -87,7 +87,7 @@ export default { await Database.putNote(user.id, reason, interaction.user.id); - interaction.editReply('Added note.'); + interaction.editReply(`Note added to ${user}.\n\nReason:\n${reason}`); } else if (subcommand == 'remove') { const user = interaction.options.getUser('user', true); const noteId = interaction.options.getInteger('note', true);