Fix //vis

This commit is contained in:
Jesse Boyd
2019-11-17 17:22:21 +00:00
parent c3f86fd6da
commit 69c225c00f
12 changed files with 77 additions and 54 deletions

View File

@ -80,7 +80,7 @@ public class MapChunkUtil_1_14 {
try {
PacketPlayOutMapChunk nmsPacket;
int bitMask = packet.getChunk().getBitMask();
if (bitMask == 0) {
if (bitMask == 0) { // TODO remove once sending tiles/entities is fixed
nmsPacket = Fawe.get().getQueueHandler().sync((Callable<PacketPlayOutMapChunk>) () -> {
Chunk nmsChunk = world.getChunkAt(packet.getChunkX(), packet.getChunkZ());
PacketPlayOutMapChunk nmsPacket1 = new PacketPlayOutMapChunk(nmsChunk, 65535);