From 21a4db8a810e253fc73ee79596573f70776dc757 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Mon, 11 Sep 2023 13:40:47 -0400 Subject: [PATCH] Pixels set to 0 --- src/engine/InterestManagement/HeightMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/InterestManagement/HeightMap.java b/src/engine/InterestManagement/HeightMap.java index 0a3c3da2..0abf12fa 100644 --- a/src/engine/InterestManagement/HeightMap.java +++ b/src/engine/InterestManagement/HeightMap.java @@ -141,7 +141,7 @@ public class HeightMap { for (int y = 0; y <= this.fullExtentsY; y++) { for (int x = 0; x <= this.fullExtentsX; x++) { - pixelColorValues[x][y] = 255; + pixelColorValues[x][y] = 0; } } @@ -176,7 +176,7 @@ public class HeightMap { for (int y = 0; y <= this.fullExtentsY; y++) { for (int x = 0; x <= this.fullExtentsX; x++) { - pixelColorValues[x][y] = 255; + pixelColorValues[x][y] = 0; } }