3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-17 05:20:14 +01:00

Also reset when an exception is thrown.

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-05-25 11:49:45 -04:00
Ursprung 64c16e61d2
Commit 74ff56cbc9

Datei anzeigen

@ -772,6 +772,8 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
} else if (status.getStatus() == Status.SERVER_DISCONNECTED) {
resetInFlightConnection();
}
} else if (throwable != null) {
resetInFlightConnection();
}
}, connection.eventLoop())
.thenApply(x -> x);