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

Complete the teardown future anyway

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-06-12 07:27:51 -04:00
Ursprung 8a6e77689b
Commit 0109f4477a

Datei anzeigen

@ -595,6 +595,8 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
if (!this.explicitlyDisconnected) {
server.getEventManager().fire(new DisconnectEvent(this, !isConnected))
.thenRun(() -> this.teardownFuture.complete(null));
} else {
this.teardownFuture.complete(null);
}
}