cloud model update

This commit is contained in:
minjaesong
2023-10-03 04:37:39 +09:00
parent cd2043b044
commit 48a07a9be5
2 changed files with 5 additions and 5 deletions

View File

@@ -370,7 +370,7 @@ internal object BlocksDrawer {
// hide tiles with super low lights, kinda like Minecraft's Orebfuscator
val lightAtXY = LightmapRenderer.getLight(x, y) ?: Cvec(0)
if (lightAtXY.fastLum() <= 2f / 255f) {
if (lightAtXY.fastLum() <= 4f / 255f) {
tileNumber = 2 // black solid
}