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() {