Skip to content

Commit

Permalink
fixed small heat exchanger tanks
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Nov 22, 2024
1 parent ea25f98 commit 294d57e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ public static class SmallHeatExchangerFluidHandler extends MachineFluidHandler<B
public SmallHeatExchangerFluidHandler(BlockEntitySmallHeatExchanger tile) {
super(tile);
tanks.put(FluidDirection.INPUT, FluidTanks.create(tile, SlotType.FL_IN, b -> {
b.tank(this::acceptsRecipe, 1000);
b.tank(this::acceptWater, 4000);
b.tank(this::acceptWater, 1000);
b.tank(this::acceptsRecipe, 4000);
return b;
}));
tanks.put(FluidDirection.OUTPUT, FluidTanks.create(tile, SlotType.FL_OUT, b -> {
Expand Down

0 comments on commit 294d57e

Please sign in to comment.