From d44152dc468904960f8d025b35118f3ea9f557f4 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Fri, 14 Nov 2025 07:48:33 -0600 Subject: [PATCH] fix compiling --- .../common/wrappers/block/AbstractDhTintGetter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/AbstractDhTintGetter.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/AbstractDhTintGetter.java index 327879721..18be701a1 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/AbstractDhTintGetter.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/AbstractDhTintGetter.java @@ -140,7 +140,7 @@ public abstract class AbstractDhTintGetter implements BlockAndTintGetter // this can return the same position/datapoint for larger LODs duplicating work, // however for small smoothing ranges that isn't a big deal and for large LODs // we ignore smoothing anyway - long dataPoint = this.fullDataSource.getAtBlockPos(mutableBlockPos); + long dataPoint = this.fullDataSource.getDataPointAtBlockPos(mutableBlockPos); if (dataPoint == FullDataPointUtil.EMPTY_DATA_POINT) { continue;