From f705fee90fb21cdf756675fb882d04a015597c07 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Tue, 24 Oct 2023 20:04:47 -0500 Subject: [PATCH] Fix ClientBlockStateCache missing import --- .../common/wrappers/block/cache/ClientBlockStateCache.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/cache/ClientBlockStateCache.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/cache/ClientBlockStateCache.java index a7966b73d..9001d32d6 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/cache/ClientBlockStateCache.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/block/cache/ClientBlockStateCache.java @@ -39,6 +39,8 @@ import net.minecraft.world.level.block.LeavesBlock; import net.minecraft.world.level.block.RotatedPillarBlock; #if POST_MC_1_19_2 import net.minecraft.util.RandomSource; +#else +import java.util.Random; #endif import net.minecraft.world.level.block.state.BlockState; import org.apache.logging.log4j.Logger;