Skip to content

Commit

Permalink
fix crystallisers not realising they need to come off vacation and do…
Browse files Browse the repository at this point in the history
… work
  • Loading branch information
thiakil committed Aug 23, 2024
1 parent a87b00c commit 8a297fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public TileEntityChemicalCrystallizer(BlockPos pos, BlockState state) {
@Override
public IChemicalTankHolder getInitialChemicalTanks(IContentsListener listener, IContentsListener recipeCacheListener, IContentsListener recipeCacheUnpauseListener) {
ChemicalTankHelper builder = ChemicalTankHelper.forSideWithConfig(this::getDirection, this::getConfig);
builder.addTank(inputTank = BasicChemicalTank.input(MAX_CHEMICAL, this::containsRecipe, recipeCacheUnpauseListener));
builder.addTank(inputTank = BasicChemicalTank.input(MAX_CHEMICAL, this::containsRecipe, recipeCacheListener));
return builder.build();
}

Expand Down

0 comments on commit 8a297fa

Please sign in to comment.