From a4ac2222cc8f848236afa83354f527d4049e750b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 24 Mar 2024 11:15:29 -0400 Subject: [PATCH] Make join game look better --- util/Util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/Util.js b/util/Util.js index 1bd62b74..30409150 100644 --- a/util/Util.js +++ b/util/Util.js @@ -348,7 +348,7 @@ module.exports = class Util { You will need at least ${min - 1} more player${addS} (at max ${max - 1}). As the host, ${msg.author}, you can start the game early. `; - text += '\n'; + text += '\n\n'; const initialMsg = await msg.say(text, { components: [row] }); const joined = []; joined.push(msg.author.id); @@ -372,7 +372,7 @@ module.exports = class Util { return; } joined.push(interaction.user.id); - text += '✅'; + text += `${interaction.user.tag} is in!\n`; interaction.update(text); }); return new Promise(res => {