project: Rev 202

This commit is contained in:
Owain van Brakel
2021-12-14 18:20:58 +01:00
parent e974585ce8
commit 7c7bf0901a
406 changed files with 39725 additions and 39842 deletions

View File

@@ -26,11 +26,11 @@ public class ItemContainer extends Node {
int[] quantities;
static {
itemContainers = new NodeHashTable(32); // L: 7
itemContainers = new NodeHashTable(32);
}
ItemContainer() {
this.ids = new int[]{-1}; // L: 8
this.quantities = new int[]{0}; // L: 9
} // L: 11
this.ids = new int[]{-1};
this.quantities = new int[]{0};
}
}