13
0
geforkt von Mirrors/Velocity

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);