Uncomment disconnect code for downstream disconnect

- This should hopefully reduce spam in console when a java client is disconnected. The disconnect handler will be rewritten later to address the not being able to reconnect issue.
This commit is contained in:
Redned 2019-08-23 22:49:48 -05:00 committed by GitHub
parent 09a68c77f3
commit 7aa4457f34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ public class GeyserSession implements PlayerSession, Player {
public void disconnected(DisconnectedEvent event) {
loggedIn = false;
connector.getLogger().info(authenticationData.getName() + " has disconnected from remote java server on address " + remoteServer.getAddress() + " because of " + event.getReason());
// upstream.disconnect(event.getReason());
upstream.disconnect(event.getReason());
}
@Override
@ -299,4 +299,4 @@ public class GeyserSession implements PlayerSession, Player {
playStatusPacket.setStatus(PlayStatusPacket.Status.PLAYER_SPAWN);
upstream.sendPacket(playStatusPacket);
}
}
}