diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-22 16:00:31 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-22 16:00:31 +0100 |
| commit | b973e896ca975f4339e2d8fdbd5a4417bd91be29 (patch) | |
| tree | b1bd4580b9fdf8655acdd0d0c07cd266729d4f16 /174bg/discord-bot/source/commands/uex.js | |
| parent | 6b75f550a21ab47606dd9200b1394ecf98bab857 (diff) | |
| download | unnamed-group-b973e896ca975f4339e2d8fdbd5a4417bd91be29.tar unnamed-group-b973e896ca975f4339e2d8fdbd5a4417bd91be29.tar.gz unnamed-group-b973e896ca975f4339e2d8fdbd5a4417bd91be29.tar.bz2 unnamed-group-b973e896ca975f4339e2d8fdbd5a4417bd91be29.tar.xz unnamed-group-b973e896ca975f4339e2d8fdbd5a4417bd91be29.zip | |
remove ephemeral flag from deferReply in uex_lookup_items function
Diffstat (limited to '174bg/discord-bot/source/commands/uex.js')
| -rw-r--r-- | 174bg/discord-bot/source/commands/uex.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/174bg/discord-bot/source/commands/uex.js b/174bg/discord-bot/source/commands/uex.js index 1a80894..03a5d20 100644 --- a/174bg/discord-bot/source/commands/uex.js +++ b/174bg/discord-bot/source/commands/uex.js @@ -56,7 +56,7 @@ export default { async function uex_lookup_items(interaction) { const query = interaction.options.getString("query"); - await interaction.deferReply({ flags: MessageFlags.Ephemeral }); + await interaction.deferReply(); const allItems = await items(); |
