Skip to content

Commit

Permalink
Fix missed call with update
Browse files Browse the repository at this point in the history
  • Loading branch information
ALongStringOfNumbers authored and serenibyss committed Oct 31, 2023
1 parent ef0638d commit 1ccfb48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public MetaTileEntity createMetaTileEntity(IGregTechTileEntity tileEntity) {
protected void initializeInventory() {
super.initializeInventory();
itemInventory = itemStackHandler = new GTItemStackHandler(this, getInventorySize());
importHandler = new ItemHandlerProxy(itemStackHandler, new ItemStackHandler(0));
exportHandler = new ItemHandlerProxy(new ItemStackHandler(0), itemStackHandler);
importHandler = new ItemHandlerProxy(itemStackHandler, new GTItemStackHandler(this, 0));
exportHandler = new ItemHandlerProxy(new GTItemStackHandler(this, 0), itemStackHandler);
}

private int getInventorySize() {
Expand Down

0 comments on commit 1ccfb48

Please sign in to comment.