diff --git a/src/main/java/techreborn/blockentity/storage/item/StorageUnitBaseBlockEntity.java b/src/main/java/techreborn/blockentity/storage/item/StorageUnitBaseBlockEntity.java index f4653cb5e..3a9d2825f 100644 --- a/src/main/java/techreborn/blockentity/storage/item/StorageUnitBaseBlockEntity.java +++ b/src/main/java/techreborn/blockentity/storage/item/StorageUnitBaseBlockEntity.java @@ -113,14 +113,14 @@ public class StorageUnitBaseBlockEntity extends MachineBaseBlockEntity } } -// // Update for stored item for clients if out of date -// if(world.getTime() % 20 == 0) { -// Item storedItem = this.getStoredStack().getItem(); -// if (!isLocked() && prevItem != storedItem) { -// prevItem = storedItem; -// syncWithAll(); -// } -// } + // Update for stored item for clients if out of date + if(world.getTime() % 20 == 0) { + Item storedItem = this.getStoredStack().getItem(); + if (!isLocked() && prevItem != storedItem) { + prevItem = storedItem; + syncWithAll(); + } + } } private void populateOutput() {