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);