3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 22:02:50 +02:00

Check if player is handled by Via on disconnect

Dieser Commit ist enthalten in:
KennyTV 2020-04-22 22:11:01 +02:00
Ursprung a82bbc4e66
Commit 578c661730
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6BE3B555EBC5982B

Datei anzeigen

@ -137,7 +137,10 @@ public class ViaManager {
}
public void handleDisconnect(UUID id) {
handleDisconnect(getConnection(id));
UserConnection connection = getConnection(id);
if (connection != null) {
handleDisconnect(connection);
}
}
public void handleDisconnect(UserConnection info) {