fix: axe not cutting large trees well

This commit is contained in:
minjaesong
2024-01-25 04:38:26 +09:00
parent 46557c0f91
commit 54061f64a8
4 changed files with 58 additions and 25 deletions

View File

@@ -428,7 +428,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() <= 4f / 255f) {
if (lightAtXY.fastLum() <= 1.5f / 255f) {
tileNumber = 2 // black solid
}