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.
2 parents 6c1fddd + 17e47eb commit abe6a92Copy full SHA for abe6a92
src/modules/helpthread.ts
@@ -91,7 +91,7 @@ export class HelpThreadModule extends Module {
91
@listener({ event: 'messageCreate' })
92
async onNewQuestion(msg: Message) {
93
if (!isHelpChannel(msg.channel)) return;
94
- if (msg.author.id === this.client.user!.id) return;
+ if (msg.author.bot) return;
95
console.log(
96
'Received new question from',
97
msg.author,
0 commit comments