diff options
Diffstat (limited to '174bg/discord-bot/main.js')
| -rw-r--r-- | 174bg/discord-bot/main.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/174bg/discord-bot/main.js b/174bg/discord-bot/main.js index f9ce3cd..2f1ae87 100644 --- a/174bg/discord-bot/main.js +++ b/174bg/discord-bot/main.js @@ -108,9 +108,10 @@ const commands = [ }); // reply to the user - await interaction.reply( - `Requisition ticket created: <#${newChannel.id}>`, - ); + await interaction.reply({ + content: `Your requisition ticket has been created: <#${newChannel.id}>`, + ephemeral: true, + }); // log sendMessageToLogsChannel( |
