From c19d04ad1a98126a6b616e1f11b75ee9efb304c3 Mon Sep 17 00:00:00 2001 From: Andrew nuark G Date: Sun, 5 Mar 2023 11:03:06 +0700 Subject: [PATCH] Fixed game config constraints --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 4cac358..10661de 100644 --- a/src/index.ts +++ b/src/index.ts @@ -306,7 +306,7 @@ function registerSocketLoggedInFunctions(socket: Socket) { return; } - if (tries < 20 || tries > 50) { + if (tries < 10 || tries > 50) { socket.emit("createGameResponse", false, "Tries must be between 20 and 50"); return; }