This commit is contained in:
Anuken
2020-10-03 15:35:26 -04:00
parent 58a62ad19c
commit 06f9aa5f84
6 changed files with 9 additions and 6 deletions

View File

@@ -23,6 +23,7 @@ public class OverflowGate extends Block{
instantTransfer = true;
unloadable = false;
canOverdrive = false;
itemCapacity = 1;
}
@Override

View File

@@ -75,6 +75,8 @@ public class CoreBlock extends StorageBlock{
public void setStats(){
super.setStats();
stats.add(BlockStat.buildTime, 0, StatUnit.seconds);
bars.add("capacity", (CoreBuild e) ->
new Bar(
() -> Core.bundle.format("bar.capacity", UI.formatAmount(e.storageCapacity)),