Skip to content

Commit

Permalink
vanilla parity for the second C counter (total section count)
Browse files Browse the repository at this point in the history
  • Loading branch information
tildejustin committed Jul 19, 2024
1 parent 15aeb78 commit 72f63a2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,8 @@ public void destroy() {
}

public int getTotalSections() {
return this.renders.size();
int renderDistance = MinecraftClient.getInstance().options.viewDistance * 2 + 1;
return renderDistance * 16 * renderDistance;
}

public void scheduleRebuild(int x, int y, int z, boolean important) {
Expand Down

0 comments on commit 72f63a2

Please sign in to comment.