Implement the missing methods, Eclipse failed me.

This commit is contained in:
graywolf336 2016-03-21 17:01:48 -05:00
parent 95b159c69d
commit 42f78963c1

View File

@ -317,4 +317,16 @@ public class MockPlayerInventory implements PlayerInventory {
public void setItemInOffHand(ItemStack item) {
}
public void setExtraContents(ItemStack[] items) {
}
public ItemStack[] getExtraContents() {
return null;
}
public ItemStack[] getStorageContents() {
return null;
}
}