bot: send success after actually successful
vi did:web:vt3e.cat
Tue, 30 Jun 2026 23:29:58 +0100
1 files changed,
4 insertions(+),
4 deletions(-)
M
apps/bot/src/feats/tickets/commands.ts
→
apps/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"}`, }); } },