Skip to content

Commit 9d0ef01

Browse files
committed
add a prefix for default thread title
1 parent 5284d79 commit 9d0ef01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/helpthread.ts

Lines changed: 1 addition & 1 deletion
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: msg.member?.nickname ?? msg.author.username,
95+
name: `Help ${msg.member?.nickname ?? msg.author.username}`,
9696
autoArchiveDuration: ThreadAutoArchiveDuration.OneDay,
9797
});
9898
thread.send(helpThreadWelcomeMessage(msg.member!));

0 commit comments

Comments
 (0)