From 59c82f0499d2c80e69f8da8ef6069113b2aecaf4 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Tue, 3 Feb 2026 20:35:30 -0600 Subject: [PATCH] change generic test world gen to max sky light --- coreSubProjects | 2 +- .../fabric/testing/TestGenericWorldGenerator.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/coreSubProjects b/coreSubProjects index 39eed05d8..f2612f39c 160000 --- a/coreSubProjects +++ b/coreSubProjects @@ -1 +1 @@ -Subproject commit 39eed05d83d5e299ee8915abfa057b1be8fdca8b +Subproject commit f2612f39c05a94ad5a1092aa68a16baf698c3a0d diff --git a/fabric/src/main/java/com/seibel/distanthorizons/fabric/testing/TestGenericWorldGenerator.java b/fabric/src/main/java/com/seibel/distanthorizons/fabric/testing/TestGenericWorldGenerator.java index a826f242e..f223813d9 100644 --- a/fabric/src/main/java/com/seibel/distanthorizons/fabric/testing/TestGenericWorldGenerator.java +++ b/fabric/src/main/java/com/seibel/distanthorizons/fabric/testing/TestGenericWorldGenerator.java @@ -171,8 +171,8 @@ public class TestGenericWorldGenerator implements IDhApiWorldGenerator // sky lighting can be ignored. DH will auto light the LODs after they've been submitted // block lighting however will need to be generated here - dataPoints.add(DhApiTerrainDataPoint.create((byte)0, 0, 0, 0, maxHeight, block, biome)); - dataPoints.add(DhApiTerrainDataPoint.create((byte)0, 0, 0, maxHeight, 256, airBlock, biome)); + dataPoints.add(DhApiTerrainDataPoint.create((byte)0, 0, 15, 0, maxHeight, block, biome)); + dataPoints.add(DhApiTerrainDataPoint.create((byte)0, 0, 15, maxHeight, 256, airBlock, biome)); pooledFullDataSource.setApiDataPointColumn(x, z, dataPoints); }