Skip to content

Commit

Permalink
ME IO Part Direction Fix (#2250)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungOnionMC authored Oct 26, 2024
1 parent e7c856d commit fc799fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MEOutputHatchPartMachine extends MEHatchPartMachine implements IMac
private KeyStorage internalBuffer; // Do not use KeyCounter, use our simple implementation

public MEOutputHatchPartMachine(IMachineBlockEntity holder, Object... args) {
super(holder, IO.IN, args);
super(holder, IO.OUT, args);
}

/////////////////////////////////
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class MEPatternBufferProxyPartMachine extends TieredIOPartMachine impleme
private BlockPos bufferPos;

public MEPatternBufferProxyPartMachine(IMachineBlockEntity holder) {
super(holder, GTValues.LuV, IO.BOTH);
super(holder, GTValues.LuV, IO.IN);
this.itemProxyHandler = new MEPatternBufferProxyRecipeHandler<>(this, IO.IN, ItemRecipeCapability.CAP);
this.fluidProxyHandler = new MEPatternBufferProxyRecipeHandler<>(this, IO.IN, FluidRecipeCapability.CAP);
}
Expand Down

0 comments on commit fc799fa

Please sign in to comment.