Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-07 16:50:12 +01:00
Only upload the skin on Floodgate
Dieser Commit ist enthalten in:
Ursprung
db583135eb
Commit
2f2e2cc285
@ -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);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren