Skip to content

Commit

Permalink
disable async button
Browse files Browse the repository at this point in the history
  • Loading branch information
RogoShum committed Apr 28, 2024
1 parent 2958678 commit 3947e25
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/rogo/renderingculling/api/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ public static void setCullChunk(boolean value) {
}

public static boolean getAsyncChunkRebuild() {
if (true)
return false;
if (unload())
return false;

Expand All @@ -88,6 +90,8 @@ public static boolean getAsyncChunkRebuild() {
}

public static void setAsyncChunkRebuild(boolean value) {
if (true)
return;
if(!shouldCullChunk())
return;

Expand Down

0 comments on commit 3947e25

Please sign in to comment.