Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2025-10-18 18:04:34 -04:00
8 changed files with 17 additions and 5 deletions

View File

@@ -68,6 +68,7 @@ public class CoreBlock extends StorageBlock{
solid = true;
update = true;
hasItems = true;
alwaysAllowDeposit = true;
priority = TargetPriority.core;
flags = EnumSet.of(BlockFlag.core);
unitCapModifier = 10;

View File

@@ -126,5 +126,10 @@ public class StorageBlock extends Block{
public boolean canPickup(){
return linkedCore == null;
}
@Override
public boolean allowDeposit(){
return linkedCore != null || super.allowDeposit();
}
}
}