diff --git a/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java b/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java index 85d10a30b..45ad1f27a 100644 --- a/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java +++ b/src/main/java/techreborn/blockentity/generator/SolarPanelBlockEntity.java @@ -166,6 +166,7 @@ public class SolarPanelBlockEntity extends PowerAcceptorBlockEntity implements I // State checking and updating if (world.getTime() % 20 == 0) { + checkOverfill = true; updateState(); } @@ -292,4 +293,4 @@ public class SolarPanelBlockEntity extends PowerAcceptorBlockEntity implements I .sync(this::getSunState, this::setSunState) .addInventory().create(this, syncID); } -} \ No newline at end of file +}