From d51d489a0b0ef3f86365cb9e717e496320075c7a Mon Sep 17 00:00:00 2001 From: NK Date: Thu, 6 Apr 2023 14:17:35 +0100 Subject: [PATCH] uh --- util/functions/function.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/util/functions/function.js b/util/functions/function.js index db91d04..7b19711 100644 --- a/util/functions/function.js +++ b/util/functions/function.js @@ -394,9 +394,7 @@ async function confirmation(message, author, validReactions, time = 60000) { return message .awaitReactions({ filter, max: 1, time: time }) .then(collected => collected.first() && collected.first().emoji.name); - } catch (e) { - console.log(e); - } + } catch (_) {} } function selectRandom(array = []) { return array[Math.floor(Math.random() * array.length)];