Merged inventory saving/loading, item-based capacity

This commit is contained in:
Anuken
2018-10-21 21:46:12 -04:00
parent 67f574b5d8
commit 3bd73961d7
4 changed files with 89 additions and 25 deletions

View File

@@ -17,12 +17,12 @@ public class StorageBlocks extends BlockList implements ContentList{
vault = new Vault("vault"){{
size = 3;
itemCapacity = 2000;
itemCapacity = 1000;
}};
container = new Vault("container"){{
size = 2;
itemCapacity = 500;
itemCapacity = 250;
}};
unloader = new SortedUnloader("unloader"){{