Skip to content

Commit 65018ea

Browse files
committed
prefix open channels with [Open]
1 parent 9d0ef01 commit 65018ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modules/helpthread.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class HelpThreadModule extends Module {
9292
if (msg.author.id === this.client.user!.id) return;
9393
this.updateHelpInfo(msg.channel);
9494
let thread = await msg.startThread({
95-
name: `Help ${msg.member?.nickname ?? msg.author.username}`,
95+
name: `[Open]: Help ${msg.member?.nickname ?? msg.author.username}`,
9696
autoArchiveDuration: ThreadAutoArchiveDuration.OneDay,
9797
});
9898
thread.send(helpThreadWelcomeMessage(msg.member!));
@@ -261,7 +261,7 @@ export class HelpThreadModule extends Module {
261261
HelpThread.update(thread.id, {
262262
titleSetTimestamp: Date.now() + '',
263263
}),
264-
msg.channel.setName(`${username} - ${title}`),
264+
msg.channel.setName(`[Open]: ${username} - ${title}`),
265265
]);
266266
}
267267

0 commit comments

Comments
 (0)