Merge branch 'mc-1.14.x' into mc-1.15.x

This commit is contained in:
SquidDev 2020-05-04 10:28:55 +01:00
commit ca2995ed38
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public void read( PacketBuffer buffer )
{
for( double[] colour : colours )
{
for( int i = 0; i < colour.length; i++ ) colour[i] = buffer.readByte() * 255;
for( int i = 0; i < colour.length; i++ ) colour[i] = (buffer.readByte() & 0xFF) / 255.0;
}
}