mirror of
https://github.com/SpigotMC/BungeeCord.git
synced 2024-12-18 14:47:50 +01:00
#3765: Fix forgotten boolean write
This commit is contained in:
parent
8a80435e64
commit
7340f1a035
@ -45,6 +45,10 @@ public class EncryptionResponse extends DefinedPacket
|
||||
writeArray( verifyToken, buf );
|
||||
} else
|
||||
{
|
||||
if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_19 && protocolVersion <= ProtocolConstants.MINECRAFT_1_19_3 )
|
||||
{
|
||||
buf.writeBoolean( false );
|
||||
}
|
||||
buf.writeLong( encryptionData.getSalt() );
|
||||
writeArray( encryptionData.getSignature(), buf );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user