From 9461368c021171267043ba9b83f9956766536e69 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Sat, 8 Jun 2024 17:08:30 -0400 Subject: [PATCH] Update port range --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index d632473..72c5fcb 100644 --- a/app.js +++ b/app.js @@ -27,7 +27,7 @@ let servePort; // Function to get a random port between 1337 and 2223 function getRandomPort() { - return Math.floor(Math.random() * (2223 - 1337 + 1)) + 1337; + return Math.floor(Math.random() * (65535 - 49152 + 1)) + 49152; } async function initialize() {