Skip to content

Commit

Permalink
Hack for #157
Browse files Browse the repository at this point in the history
  • Loading branch information
planetguy32 committed Oct 30, 2015
1 parent 4935ee3 commit 3eed4cf
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ public ContainerDrive(InventoryPlayer inventoryPlayer, TileEntity te) {
}

@Override
protected void bindPlayerInventory(InventoryPlayer inventoryPlayer){}
protected void bindPlayerInventory(InventoryPlayer inventoryPlayer){
for (int i = 0; i < 36; i++) {
addSlotToContainer(new Slot(inventoryPlayer, i,
100000000, 100000000));
//Player inventory slots still get added, but they're rendered in the stratosphere
}
}

@Override
public void makeSlots(TileEntity teGeneral) {
Expand Down

0 comments on commit 3eed4cf

Please sign in to comment.