From 17453d7edde07f7ca3fcaae4eb68c37500f4beeb Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Mon, 1 Jun 2020 22:25:51 +0100 Subject: [PATCH] post merge compile fix --- .../techreborn/blockentity/generator/SolarPanelBlockEntity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java b/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java index 30a8ae770..167242a22 100644 --- a/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java +++ b/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java @@ -112,7 +112,7 @@ public class SolarPanelBlockEntity extends PowerAcceptorBlockEntity implements I this.setSunState(ZEROGEN); } // Nether and The End - if (!world.dimension.hasSkyLight()) { + if (!world.getDimension().hasSkyLight()) { this.setSunState(NIGHTGEN); }