From 3a5502dd6fbffda4029ab9d6b88b28de7ab7aff1 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 13 Apr 2024 01:33:03 -0400 Subject: [PATCH] Fix awaitPlayers edit speed --- util/Util.js | 1 + 1 file changed, 1 insertion(+) diff --git a/util/Util.js b/util/Util.js index 960b99bd..53deec2b 100644 --- a/util/Util.js +++ b/util/Util.js @@ -376,6 +376,7 @@ module.exports = class Util { return; } joined.push(interaction.user.id); + if (joined.length === max) return; text += `${interaction.user.tag} is in!\n`; interaction.update(text); });