Misc polish

This commit is contained in:
Anuken
2021-10-30 19:01:47 -04:00
parent 87a8453871
commit 64a6f10338
7 changed files with 3 additions and 3 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 658 B

After

Width:  |  Height:  |  Size: 624 B

@@ -37,7 +37,7 @@ public class SteamVent extends Floor{
public SteamVent(String name){
super(name);
variants = 1;
variants = 2;
inEditor = false;
}
@@ -333,7 +333,7 @@ public class CoreBlock extends StorageBlock{
@Override
public int getMaximumAccepted(Item item){
return state.rules.coreIncinerates ? storageCapacity * 2 : storageCapacity;
return state.rules.coreIncinerates ? storageCapacity * 20 : storageCapacity;
}
@Override
@@ -348,7 +348,7 @@ public class CoreBlock extends StorageBlock{
state.teams.registerCore(this);
storageCapacity = itemCapacity + proximity().sum(e -> owns(e) ? e.block.itemCapacity : 0);
proximity.each(e -> owns(e), t -> {
proximity.each(this::owns, t -> {
t.items = items;
((StorageBuild)t).linkedCore = this;
});