From 61295bc89ccb52e2310a33aa0083f38412655003 Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 1 Sep 2022 16:49:17 -0400 Subject: [PATCH] Slightly longer data timeout --- core/src/mindustry/core/NetClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/core/NetClient.java b/core/src/mindustry/core/NetClient.java index 415ed77556..e5c3428911 100644 --- a/core/src/mindustry/core/NetClient.java +++ b/core/src/mindustry/core/NetClient.java @@ -32,7 +32,7 @@ import java.util.zip.*; import static mindustry.Vars.*; public class NetClient implements ApplicationListener{ - private static final float dataTimeout = 60 * 20; + private static final float dataTimeout = 60 * 25; /** ticks between syncs, e.g. 5 means 60/5 = 12 syncs/sec*/ private static final float playerSyncTime = 4; private static final Reads dataReads = new Reads(null);