From 6733aa5635dfaeed4d8d20cb6a64280d4de1b33c Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 9 Oct 2017 18:23:58 +1100 Subject: [PATCH] SPIGOT-3603: Fix client timing out in scenarios where it sends no packets. --- nms-patches/PlayerConnection.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nms-patches/PlayerConnection.patch b/nms-patches/PlayerConnection.patch index 402d00e6b1..bf80617dde 100644 --- a/nms-patches/PlayerConnection.patch +++ b/nms-patches/PlayerConnection.patch @@ -102,7 +102,7 @@ long i = this.d(); - if (i - this.f >= 15000L) { -+ if (i - this.f >= 30000L) { // CraftBukkit ++ if (i - this.f >= 25000L) { // CraftBukkit if (this.g) { this.disconnect(new ChatMessage("disconnect.timeout", new Object[0])); } else {