Disabled pre-gen loading for now + small fix

This commit is contained in:
Leonardo
2021-10-17 19:56:29 +02:00
parent e6949dcd14
commit 33d150b090
3 changed files with 11 additions and 8 deletions
@@ -342,17 +342,16 @@ public class LodConfig
+ " Turning this on will make plains smoother since the tall grass won't be used. \n")
.define("Avoid Blocks With No Collision", true);
/*alwaysLoadPregeneratedChunks = builder
.comment("\n\n"
+ " if a chunk has been pre-generated, then the mod would use the real chunk for the \n"
+ "fake chunk creation. May require a deletion of the lod file to see the result. \n")
.define("Use pre-generated chunks", true);*/
avoidNonFullBlocks = builder
.comment("\n\n"
+ " If true LODs will only show full bocks when generating. \n"
+ " Turning this on will make plains smoother since the tall grass won't be used. \n")
.define("Avoid Non Full Blocks", true);
alwaysLoadPregeneratedChunks = builder
.comment("\n\n"
+ " if a chunk has been pregenerated, then the mod would use the real chunk for the \n"
+ " fake chunk creation. May require a deletion of the lod file to see the result. \n")
.define("Use pre-generated chunks", false);
builder.pop();
}
}