mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 07:33:11 +01:00
SPIGOT-3603: Fix client timing out in scenarios where it sends no packets.
This commit is contained in:
parent
30da15647f
commit
6733aa5635
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue