From ace3c03019d20fcd2456a7ea3ccb8d24c6fc51ff Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sun, 21 Nov 2021 15:28:19 -0600 Subject: [PATCH] Update IChunkWrapper.java --- .../lod/core/wrapperInterfaces/chunk/IChunkWrapper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/seibel/lod/core/wrapperInterfaces/chunk/IChunkWrapper.java b/src/main/java/com/seibel/lod/core/wrapperInterfaces/chunk/IChunkWrapper.java index 94d3312f0..c258c2cf7 100644 --- a/src/main/java/com/seibel/lod/core/wrapperInterfaces/chunk/IChunkWrapper.java +++ b/src/main/java/com/seibel/lod/core/wrapperInterfaces/chunk/IChunkWrapper.java @@ -22,7 +22,7 @@ package com.seibel.lod.core.wrapperInterfaces.chunk; import com.seibel.lod.core.wrapperInterfaces.block.AbstractBlockPosWrapper; import com.seibel.lod.core.wrapperInterfaces.block.IBlockColorWrapper; import com.seibel.lod.core.wrapperInterfaces.block.IBlockShapeWrapper; -import com.seibel.lod.forge.wrappers.world.BiomeWrapper; +import com.seibel.lod.core.wrapperInterfaces.world.IBiomeWrapper; /** * @author James Seibel @@ -36,7 +36,7 @@ public interface IChunkWrapper public int getHeightMapValue(int xRel, int zRel); - public BiomeWrapper getBiome(int xRel, int yAbs, int zRel); + public IBiomeWrapper getBiome(int xRel, int yAbs, int zRel); public IBlockColorWrapper getBlockColorWrapper(AbstractBlockPosWrapper blockPos);