3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-10-03 08:41:05 +02:00

Don't make the client resize palettes on >8 bits

Dieser Commit ist enthalten in:
Nassim Jahnke 2021-12-08 21:31:53 +01:00
Ursprung 7d7651bc39
Commit 2143e38d27
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6BE3B555EBC5982B

Datei anzeigen

@ -89,7 +89,6 @@ public final class PaletteType1_18 extends Type<DataPalette> {
@Override
public void write(final ByteBuf buffer, final DataPalette palette) throws Exception {
final int bitsPerValue;
if (palette.size() == 1) {
// Single value palette
buffer.writeByte(0); // 0 bit storage
@ -102,7 +101,11 @@ public final class PaletteType1_18 extends Type<DataPalette> {
// 1, 2, and 3 bit linear block palettes can't be read by the client
final int min = type == PaletteType.BLOCKS ? 4 : 1;
bitsPerValue = MathUtil.clamp(MathUtil.ceilLog2(palette.size()), min, type.highestBitsPerValue());
int bitsPerValue = Math.max(min, MathUtil.ceilLog2(palette.size()));
if (bitsPerValue > type.highestBitsPerValue()) {
bitsPerValue = globalPaletteBits;
}
buffer.writeByte(bitsPerValue);
if (bitsPerValue != globalPaletteBits) {