mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-13 09:11:03 -05:00
Chunk light fix
This commit is contained in:
parent
da5591b4fe
commit
e447052eca
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ public class NetUtil {
|
||||||
chunk.getBlocks().write(out);
|
chunk.getBlocks().write(out);
|
||||||
chunk.getBlockLight().write(out);
|
chunk.getBlockLight().write(out);
|
||||||
if(hasSkylight) {
|
if(hasSkylight) {
|
||||||
chunk.getBlockLight().write(out);
|
chunk.getSkyLight().write(out);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue