Only upload the skin on Floodgate

This commit is contained in:
Camotoy 2021-05-30 21:36:25 -04:00
parent db583135eb
commit 2f2e2cc285
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 7 additions and 3 deletions

View File

@ -732,6 +732,8 @@ public class GeyserSession implements CommandSender {
address = handshakePacket.getHostname();
}
System.out.println((address + addressSuffix).getBytes(StandardCharsets.UTF_8).length);
event.setPacket(new HandshakePacket(
handshakePacket.getProtocolVersion(),
address + addressSuffix,
@ -802,9 +804,11 @@ public class GeyserSession implements CommandSender {
SkinManager.handleBedrockSkin(playerEntity, clientData);
}
// We'll send the skin upload a bit after the handshake packet (aka this packet),
// because otherwise the global server returns the data too fast.
getAuthData().upload(connector);
if (remoteAuthType == AuthType.FLOODGATE) {
// We'll send the skin upload a bit after the handshake packet (aka this packet),
// because otherwise the global server returns the data too fast.
getAuthData().upload(connector);
}
}
PacketTranslatorRegistry.JAVA_TRANSLATOR.translate(event.getPacket().getClass(), event.getPacket(), GeyserSession.this);