Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-08 17:20:24 +01:00
Fix 1.16.2 multi block change packet order (#2138)
Dieser Commit ist enthalten in:
Ursprung
1a4c34afcf
Commit
a6043c14cd
@ -84,7 +84,7 @@ public class WorldPackets {
|
|||||||
newPacket.write(Type.LONG, chunkPosition | (chunkY & 0xFFFFFL));
|
newPacket.write(Type.LONG, chunkPosition | (chunkY & 0xFFFFFL));
|
||||||
newPacket.write(Type.BOOLEAN, false); // Ignore light updates
|
newPacket.write(Type.BOOLEAN, false); // Ignore light updates
|
||||||
newPacket.write(Type.VAR_LONG_BLOCK_CHANGE_RECORD_ARRAY, sectionRecord.toArray(EMPTY_RECORDS));
|
newPacket.write(Type.VAR_LONG_BLOCK_CHANGE_RECORD_ARRAY, sectionRecord.toArray(EMPTY_RECORDS));
|
||||||
newPacket.send(Protocol1_16_2To1_16_1.class);
|
newPacket.send(Protocol1_16_2To1_16_1.class, true, true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren