Skip to content

Commit

Permalink
Fixed error thrown when running Spigot 1.16.5
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerBenGera committed Apr 29, 2022
1 parent 9db41dc commit 48775bc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -104,7 +104,7 @@ public static void runActionOnUnloadedChunks(WorldServer worldServer,
NBTTagCompound chunkCompound = playerChunkMap.read(chunkCoords);

if (chunkCompound == null) {
ProtoChunk protoChunk = new ProtoChunk(chunkCoords, ChunkConverter.a, worldServer);
ProtoChunk protoChunk = createProtoChunk(chunkCoords, worldServer);
chunkCompound = ChunkRegionLoader.saveChunk(worldServer, protoChunk);
} else {
chunkCompound = playerChunkMap.getChunkData(worldServer.getTypeKey(),
Expand Down

0 comments on commit 48775bc

Please sign in to comment.