Fixed compile errors

This commit is contained in:
Anuken
2018-03-19 15:01:22 -04:00
parent 1b36325450
commit 34f4eda1cf
3 changed files with 17 additions and 41 deletions

View File

@@ -23,12 +23,13 @@ public class Inventory {
updated = true;
Arrays.fill(items, 0);
addItem(Item.stone, 40);
if(debug){
for(Item item : Item.getAllItems()){
if(item.material) items[item.id] = 99999;
}
}else{
addItem(Item.iron, 40);
}
}