From b1cdd7794173e62e0118b59de259248262df17fd Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 11 Jun 2020 18:07:17 -0400 Subject: [PATCH] Fix lint --- util/Util.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/util/Util.js b/util/Util.js index 15bedea2..ff23b732 100644 --- a/util/Util.js +++ b/util/Util.js @@ -182,8 +182,10 @@ module.exports = class Util { static async awaitPlayers(msg, max, min = 1) { if (max === 1) return [msg.author.id]; - const addS = min - 1 > 1 ? 's': ''; - await msg.say(`You will need at least ${min - 1} more player${addS} (at max ${max - 1}). To join, type \`join game\`.`); + const addS = min - 1 > 1 ? 's' : ''; + await msg.say( + `You will need at least ${min - 1} more player${addS} (at max ${max - 1}). To join, type \`join game\`.` + ); const joined = []; joined.push(msg.author.id); const filter = res => {