mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-22 10:05:12 +01:00
As per wiki.vg only unload if bitmask = 0 and full chunk (not sure if this fixes chunk issue)
This commit is contained in:
parent
963f021226
commit
12df86a142
@ -564,7 +564,7 @@ public class OutgoingTransformer {
|
||||
|
||||
int bitMask = input.readUnsignedShort();
|
||||
|
||||
if (bitMask == 0) {
|
||||
if (bitMask == 0 && groundUp) {
|
||||
output.clear();
|
||||
PacketUtil.writeVarInt(PacketType.PLAY_UNLOAD_CHUNK.getNewPacketID(), output);
|
||||
output.writeInt(chunkX);
|
||||
|
Loading…
Reference in New Issue
Block a user