From 4e8c35cae79fa32c815480b1d54ee0c8f16f626b Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Wed, 4 Nov 2020 23:18:45 +0200 Subject: [PATCH] Clarify 'the bot is not on the modmail server' error slightly --- src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index 8fe1770..ee8e390 100644 --- a/src/utils.js +++ b/src/utils.js @@ -18,7 +18,7 @@ let logChannel = null; */ function getInboxGuild() { if (! inboxGuild) inboxGuild = bot.guilds.find(g => g.id === config.inboxServerId); - if (! inboxGuild) throw new BotError("The bot is not on the modmail (inbox) server!"); + if (! inboxGuild) throw new BotError("The bot is not on the inbox server!"); return inboxGuild; }