We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5284d79 commit 9d0ef01Copy full SHA for 9d0ef01
src/modules/helpthread.ts
@@ -92,7 +92,7 @@ export class HelpThreadModule extends Module {
92
if (msg.author.id === this.client.user!.id) return;
93
this.updateHelpInfo(msg.channel);
94
let thread = await msg.startThread({
95
- name: msg.member?.nickname ?? msg.author.username,
+ name: `Help ${msg.member?.nickname ?? msg.author.username}`,
96
autoArchiveDuration: ThreadAutoArchiveDuration.OneDay,
97
});
98
thread.send(helpThreadWelcomeMessage(msg.member!));
0 commit comments