Skip to content

Commit abe6a92

Browse files
authored
Merge branch 'master' into fix-helper
2 parents 6c1fddd + 17e47eb commit abe6a92

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
@@ -91,7 +91,7 @@ export class HelpThreadModule extends Module {
9191
@listener({ event: 'messageCreate' })
9292
async onNewQuestion(msg: Message) {
9393
if (!isHelpChannel(msg.channel)) return;
94-
if (msg.author.id === this.client.user!.id) return;
94+
if (msg.author.bot) return;
9595
console.log(
9696
'Received new question from',
9797
msg.author,

0 commit comments

Comments
 (0)