SPIGOT-3603: Fix client timing out in scenarios where it sends no packets.
Dieser Commit ist enthalten in:
Ursprung
30da15647f
Commit
6733aa5635
@ -102,7 +102,7 @@
|
|||||||
long i = this.d();
|
long i = this.d();
|
||||||
|
|
||||||
- if (i - this.f >= 15000L) {
|
- if (i - this.f >= 15000L) {
|
||||||
+ if (i - this.f >= 30000L) { // CraftBukkit
|
+ if (i - this.f >= 25000L) { // CraftBukkit
|
||||||
if (this.g) {
|
if (this.g) {
|
||||||
this.disconnect(new ChatMessage("disconnect.timeout", new Object[0]));
|
this.disconnect(new ChatMessage("disconnect.timeout", new Object[0]));
|
||||||
} else {
|
} else {
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren