Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

Commit

Permalink
Paper #163 MC-80966 - Always send chunk sections
Browse files Browse the repository at this point in the history
  • Loading branch information
crafter23456 committed Feb 20, 2022
1 parent 0d70a5a commit ea26cc5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ public int c(int i, int j, int k) {
}

public boolean a() {
return this.nonEmptyBlockCount == 0;
//return this.nonEmptyBlockCount == 0;
// Paper - MC-80966
// Even if there are no blocks, there may be other information associated with the chunk, always send it.
return false;
}

public boolean shouldTick() {
Expand Down

0 comments on commit ea26cc5

Please sign in to comment.