From 52cbfd74f3ab0341a522ba440e831c4cdbb09463 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Thu, 1 Apr 2021 22:17:49 -0500 Subject: [PATCH] Fix capitalization on not a valid role --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index fe28e26..6b9c1a1 100644 --- a/index.js +++ b/index.js @@ -125,7 +125,7 @@ async function roleRequest(message) { const role = message.content.substring(13).toLowerCase(); const possibleRoles = ['spec', 'spectator', 'reader', 'writer']; if (possibleRoles.indexOf(role) === -1) { - message.reply("Not a valid role"); + message.reply("not a valid role!"); return; } const verificationMessage = message.channel.send(`<@&826508679636844574>, <@${message.author.id}> would like the **${role}** role. Are they worthy?`);