This commit is contained in:
Anuken
2025-04-06 11:37:00 -04:00
parent a5be9b9956
commit d67302ee51
2 changed files with 3 additions and 3 deletions

View File

@@ -467,8 +467,8 @@ public class World{
for(var build : Groups.build){ for(var build : Groups.build){
//if the map area contracts, disable the block //if the map area contracts, disable the block
build.checkAllowUpdate(); build.checkAllowUpdate();
//reset map-area-based disabled blocks that were in the previous map area //reset map-area-based disabled blocks that were not in the previous map area
if(!build.enabled && build.block.autoResetEnabled && Rect.contains(x, y, w, h, build.tile.x, build.tile.y)){ if(!build.enabled && build.block.autoResetEnabled && !Rect.contains(x, y, w, h, build.tile.x, build.tile.y)){
build.enabled = true; build.enabled = true;
} }
} }

View File

@@ -643,7 +643,7 @@ public class CoreBlock extends StorageBlock{
@Override @Override
public int getMaximumAccepted(Item item){ public int getMaximumAccepted(Item item){
return state.rules.coreIncinerates ? storageCapacity * 20 : storageCapacity; return state.rules.coreIncinerates ? Integer.MAX_VALUE/2 : storageCapacity;
} }
@Override @Override