From c64ecb8b132645dbdb92ff1dc830fe1efb649118 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 24 Dec 2023 21:45:53 +0100 Subject: [PATCH] [MIRROR] Increase TGUI connection lost threshold [MDB IGNORE] (#25824) * 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. * Increase TGUI connection lost threshold --------- Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com> --- 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;