Paper/nms-patches/StructureGenerator.patch

12 lines
691 B
Diff
Raw Normal View History

--- a/net/minecraft/server/StructureGenerator.java
+++ b/net/minecraft/server/StructureGenerator.java
2018-12-25 22:00:00 +01:00
@@ -202,7 +202,7 @@
return structurestart;
} else {
ChunkCoordIntPair chunkcoordintpair = new ChunkCoordIntPair(i);
- IChunkAccess ichunkaccess = generatoraccess.getChunkProvider().a(chunkcoordintpair.x, chunkcoordintpair.z, false);
+ IChunkAccess ichunkaccess = generatoraccess.getChunkProvider().getChunkAt(chunkcoordintpair.x, chunkcoordintpair.z, false, false); // CraftBukkit - don't load chunks
if (ichunkaccess != null) {
structurestart = ichunkaccess.a(this.a());