summaryrefslogtreecommitdiffstats
path: root/nms-patches
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2017-10-09 18:23:58 +1100
committermd_5 <git@md-5.net>2017-10-09 18:23:58 +1100
commit6733aa5635dfaeed4d8d20cb6a64280d4de1b33c (patch)
tree31c2a51daecb31b1ae5609dabf11f687be89f3b5 /nms-patches
parent30da15647f2c0510f5dcb025deef945c576dcd4f (diff)
downloadcraftbukkit-6733aa5635dfaeed4d8d20cb6a64280d4de1b33c.tar
craftbukkit-6733aa5635dfaeed4d8d20cb6a64280d4de1b33c.tar.gz
craftbukkit-6733aa5635dfaeed4d8d20cb6a64280d4de1b33c.tar.lz
craftbukkit-6733aa5635dfaeed4d8d20cb6a64280d4de1b33c.tar.xz
craftbukkit-6733aa5635dfaeed4d8d20cb6a64280d4de1b33c.zip
SPIGOT-3603: Fix client timing out in scenarios where it sends no packets.
Diffstat (limited to 'nms-patches')
-rw-r--r--nms-patches/PlayerConnection.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/nms-patches/PlayerConnection.patch b/nms-patches/PlayerConnection.patch
index 402d00e6..bf80617d 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 {