Assign ServerConnection to Player before enabling auto read (#1309)

This commit is contained in:
wallenjos01 2024-07-04 02:57:30 -06:00 committed by GitHub
parent 410636a305
commit aa4e8780bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -137,12 +137,14 @@ public class TransitionSessionHandler implements MinecraftSessionHandler {
smc.setActiveSessionHandler(StateRegistry.PLAY,
new BackendPlaySessionHandler(server, serverConn));
// Clean up disabling auto-read while the connected event was being processed.
smc.setAutoReading(true);
// Now set the connected server.
serverConn.getPlayer().setConnectedServer(serverConn);
// Clean up disabling auto-read while the connected event was being processed.
// Do this after setting the connection, so no incoming packets are processed before
// the API knows which server the player is connected to.
smc.setAutoReading(true);
// Send client settings. In 1.20.2+ this is done in the config state.
if (smc.getProtocolVersion().lessThan(ProtocolVersion.MINECRAFT_1_20_2)
&& player.getClientSettingsPacket() != null) {