From 058c4eac2aff7dcd74d481969cb621c7316dea43 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Sun, 28 Jan 2024 10:40:46 +1100 Subject: [PATCH] Fixed block updates with thermoregulator --- .../toughasnails/block/entity/ThermoregulatorBlockEntity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/main/java/toughasnails/block/entity/ThermoregulatorBlockEntity.java b/common/src/main/java/toughasnails/block/entity/ThermoregulatorBlockEntity.java index 44bec95d..47985678 100644 --- a/common/src/main/java/toughasnails/block/entity/ThermoregulatorBlockEntity.java +++ b/common/src/main/java/toughasnails/block/entity/ThermoregulatorBlockEntity.java @@ -263,6 +263,7 @@ public boolean isPassable(Level level, AreaFill.FillPos pos) if (changed) { setChanged(level, pos, state); + level.sendBlockUpdated(pos, state, state, 3); } }