Skip to content

Commit

Permalink
fixed etching tank not accepting etching acid
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Aug 11, 2024
1 parent 2bccb6e commit 20be668
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ private class EtchingFluidTank extends SmartSyncTank {

@Override
public boolean isFluidValid(FluidStack stack) {
return FluidStack.isSameFluidSameComponents(EmptyPCBItem.getEtchingFluid(), fluidStack);
return stack.getFluid().isSame(EmptyPCBItem.getEtchingFluid().getFluid());
}
}
}

0 comments on commit 20be668

Please sign in to comment.