Alternate sync implementation for non-update blocks - Closes #11099

This commit is contained in:
Anuken
2025-08-06 21:54:38 +02:00
parent 6707ff5fdf
commit 0bdf4efcdd
5 changed files with 21 additions and 12 deletions
@@ -71,6 +71,7 @@ public class CoreBlock extends StorageBlock{
priority = TargetPriority.core;
flags = EnumSet.of(BlockFlag.core);
unitCapModifier = 10;
sync = false; //core items are synced elsewhere
drawDisabled = false;
canOverdrive = false;
commandable = true;
@@ -21,6 +21,7 @@ public class StorageBlock extends Block{
hasItems = true;
solid = true;
update = false;
sync = true;
destructible = true;
separateItemCapacity = true;
group = BlockGroup.transportation;