This commit is contained in:
iam4722202468 2024-05-11 04:07:32 -04:00 committed by iam
parent 667b9016ca
commit 33dff6f458
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ public final class Section implements NetworkBuffer.Writer {
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);
}