From da45e96f8fe9e7cd87bacc4a73a22dade3362ace Mon Sep 17 00:00:00 2001 From: lessthanthree <83487515+lessthnthree@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:14:59 +0000 Subject: [PATCH] Increase TGUI connection lost threshold (#80304) Increases the TGUI connection lost timeout before the manual reconnect button is required. The server takes more than 20 seconds to reboot and start allowing connections for a new round. By increasing the duration TGUI will try to automatically reconnect, players will more consistently actually reconnect to the new round without intervention. --- tgui/packages/tgui-panel/game/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tgui/packages/tgui-panel/game/constants.ts b/tgui/packages/tgui-panel/game/constants.ts index f40a529a101..d692e26c213 100644 --- a/tgui/packages/tgui-panel/game/constants.ts +++ b/tgui/packages/tgui-panel/game/constants.ts @@ -4,4 +4,4 @@ * @license MIT */ -export const CONNECTION_LOST_AFTER = 20000; +export const CONNECTION_LOST_AFTER = 45000;