From 7d6c4fa1f95bd42a0223f7cc9b18cde6a0864333 Mon Sep 17 00:00:00 2001 From: morippi Date: Fri, 22 Jul 2022 13:59:02 +0200 Subject: [PATCH] small fix --- src/main/java/com/seibel/lod/core/util/DataPointUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/seibel/lod/core/util/DataPointUtil.java b/src/main/java/com/seibel/lod/core/util/DataPointUtil.java index 8e513d4fe..fc1eb2fcd 100644 --- a/src/main/java/com/seibel/lod/core/util/DataPointUtil.java +++ b/src/main/java/com/seibel/lod/core/util/DataPointUtil.java @@ -703,7 +703,7 @@ public class DataPointUtil //{ // add simplification at the end due to color //} - dataPoint[j] = createDataPoint((int) Math.sqrt(tempAlpha), (int) Math.sqrt(tempRed), (int) Math.sqrt(tempGreen), (int) Math.sqrt(tempBlue), height, depth, tempLightSky, tempLightBlock, genMode); + dataPoint[j] = createDataPoint(tempAlpha, (int) Math.sqrt(tempRed), (int) Math.sqrt(tempGreen), (int) Math.sqrt(tempBlue), height, depth, tempLightSky, tempLightBlock, genMode); } } }