Chunk centerChunk = worldObj.getChunkFromBlockCoords(xCoord, zCoord);
for (int x = -1; x < 2; x++) {
for (int z = -1; z < 2; z++) {
ChunkCoordIntPair chunkCoords = new ChunkCoordIntPair(centerChunk.xPosition + x, centerChunk.zPosition + z);
loadArea.add(chunkCoords);
}
}
return loadArea;