Skip to content

Commit 7863e08

Browse files
committed
Prevent Tinkers Construct worldgen in the CM dimension
This probably also applies to some other mods like Ice and Fire. Thanks to reddit /r/feedthebeast for reporting the bug and providing the fix.
1 parent 46e7575 commit 7863e08

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/org/dave/compactmachines3/world/ChunkGeneratorMachines.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public Chunk generateChunk(int x, int z) {
2929
Chunk chunk = new Chunk(this.world, cp, x, z);
3030
chunk.generateSkylightMap();
3131
chunk.setBiomeArray(voidBiomeArray);
32+
chunk.setTerrainPopulated(true);
3233
return chunk;
3334
}
3435

0 commit comments

Comments
 (0)