Fixed game config constraints
This commit is contained in:
parent
cb411b59b3
commit
c19d04ad1a
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue