Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
iam4722202468 committed May 11, 2024
1 parent 667b901 commit 33dff6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/minestom/server/instance/Section.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public void clear() {
final Light skyLight = Light.sky(blockPalette);
final Light blockLight = Light.block(blockPalette);

setBlockLight(this.skyLight.array());
setSkyLight(this.blockLight.array());
setSkyLight(this.skyLight.array());
setBlockLight(this.blockLight.array());

return new Section(this.blockPalette.clone(), this.biomePalette.clone(), skyLight, blockLight);
}
Expand Down

0 comments on commit 33dff6f

Please sign in to comment.