From 55c89fe988cca436a30a3d41e0ea217748434959 Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Mon, 26 Oct 2020 16:20:53 +0000 Subject: [PATCH] fix(*): Fix bug with discord channel name formatting --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index ae002fc..69c2f28 100644 --- a/index.js +++ b/index.js @@ -114,7 +114,7 @@ function getUserFromMention(mention) { } function getChannelName(username) { - return `${username}'s adventurers`; + return `${username}s-adventurers`; } function makeTempChannel(message) {