all repos — stealth-developers @ 80180ee40ecc4d92d5572e4c8c32e3517a42ca16

bot: send success after actually successful
vi did:web:vt3e.cat
Tue, 30 Jun 2026 23:29:58 +0100
commit

80180ee40ecc4d92d5572e4c8c32e3517a42ca16

parent

6ec0bb9f6aa7c031bd18ccafc763e523b20320ac

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M apps/bot/src/feats/tickets/commands.tsapps/bot/src/feats/tickets/commands.ts

@@ -361,15 +361,15 @@ },

true, ); - await interaction.reply({ - content: `Added participant <@${args.user.id}> to the ticket - ${args.reason ?? "no reason provided"}`, - }); - if (ticketChannel?.type === ChannelType.GuildText) { ticketChannel.permissionOverwrites.edit(args.user.id, { ViewChannel: true, SendMessages: true, AttachFiles: true, + }); + + await interaction.reply({ + content: `Added participant <@${args.user.id}> to the ticket - ${args.reason ?? "no reason provided"}`, }); } },