From b8246b39609c91bcf76bed23080b79073546c7ec Mon Sep 17 00:00:00 2001 From: Navy Date: Sat, 19 Jun 2021 22:35:42 +0300 Subject: [PATCH] typo... --- structure/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure/Client.js b/structure/Client.js index 1aac60c..ed917fb 100644 --- a/structure/Client.js +++ b/structure/Client.js @@ -95,7 +95,7 @@ class ModmailClient extends Client { const { prefix } = this; const { channel, guild, content, member } = message; - if (![this.mainServer.idm, this.bansServer?.id || '0'].includes(guild.id)) return; + if (![this.mainServer.id, this.bansServer?.id || '0'].includes(guild.id)) return; if (!content || !content.startsWith(prefix)) return; const roles = member.roles.cache.map((r) => r.id);