Skip to content

Commit

Permalink
-Stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
CorgiTaco committed Jun 26, 2021
1 parent 55de857 commit eb2627c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class CCWorldGenUtils {

public static boolean areSectionsEmpty(int cubeY, ChunkPos pos, IBigCube cube) {
if (CubicChunks.commonConfig().isSkipEmptySections()) {
if (!CubicChunks.commonConfig().isSkipEmptySections()) {
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ private static CompletableFuture<ChunkAccess> getNoiseSurfaceCarverFuture(Execut
}

private static boolean areSectionsEmpty(int cubeY, ChunkPos pos, IBigCube cube) {
if (CubicChunks.commonConfig().isSkipEmptySections()) {
if (!CubicChunks.commonConfig().isSkipEmptySections()) {
return false;
}

Expand Down

0 comments on commit eb2627c

Please sign in to comment.