diff options
Diffstat (limited to '')
-rw-r--r-- | src/Discord.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Discord.ts b/src/Discord.ts index be3b9ee..7b2b046 100644 --- a/src/Discord.ts +++ b/src/Discord.ts @@ -95,7 +95,7 @@ class Discord { // ensure that the message has a sender if (!message.author) return // ensure that the message is a text message - if (message.type !== 'DEFAULT') return + if (message.type !== 'DEFAULT' && message.type !== 'REPLY') return // if the same user as the bot, ignore if (message.author.id === this.client.user?.id) return // ignore any attachments |