Merge pull request #1 from Brianetta/PR_fix_compile

Implement missing methods so that this compiles without errors
This commit is contained in:
Dan Mulloy 2016-05-07 19:49:33 -04:00
commit bf2d3f6c78
1 changed files with 10 additions and 0 deletions

View File

@ -67,6 +67,16 @@ public class AdminInventory implements Inventory {
public void setContents(ItemStack[] itemStacks) {
}
@Override
public ItemStack[] getStorageContents() {
return new ItemStack[0];
}
@Override
public void setStorageContents(ItemStack[] itemStacks) throws IllegalArgumentException {
}
@Override
public boolean contains(int i) {
return true;