From b3fe74a2a4bfc9b210d5d8a507bb5bf3c194e162 Mon Sep 17 00:00:00 2001 From: ackimixs Date: Fri, 10 May 2024 01:40:59 +0200 Subject: [PATCH] timeout --- TCPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TCPServer.cpp b/TCPServer.cpp index 310858d..857d544 100644 --- a/TCPServer.cpp +++ b/TCPServer.cpp @@ -451,7 +451,7 @@ void TCPServer::startGame() { for (int i = whereAmI; i < stratPatterns.size(); i++) { auto time = std::chrono::system_clock::now(); - if (time - gameStart > std::chrono::seconds(82)) { + if (time - gameStart > std::chrono::seconds(87)) { this->goEnd(); return; }