From 17a8f98ca33a6e0eb711cf915d696ae8dc3a2ded Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Thu, 19 Nov 2020 23:17:48 +0000 Subject: [PATCH] fix(*): Fix further missed lowercasing of channel names by Discord for text channels --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index fe47fd6..14c31e0 100644 --- a/index.js +++ b/index.js @@ -175,7 +175,7 @@ function getUserFromMention(mention) { } function getChannelName(username) { - return `${username}s-adventurers`; + return `${username.toLowerCase()}s-adventurers`; } function makeTempChannel(message, adventureMessage) {