Proposal: change or remove the minimum 500 mB input liquid requirement
3TUSK opened this issue ยท 1 comments
I was trying to use spare 500 mB water and some growth medium item to get the growth medium liquid. JEI shows that the recipe is "25 mB water + 1 growth medium item -> 25 mB growth medium liquid, with 20% item loss".
However, I got this error notice after one working cycle:
By narrowing down to the codebase, I noticed this:
It looks like the fluid.amount >= 500
precondition has been there since the beginning of the time. However, this can be extremely annoying when you run into situations where you have 25 mB extra:
Searching on the internet does not reveal anything about whether it is designed as it is or not. Considering that the only recipe that involves with growth medium liquid is the one of making bacteria liquid (which only costs 25 mB growth medium), I assume it is the initial design choice. However it doesn't change the fact that some random fluid of 25 mB is not easy to deal with.
Pipette does working on taking the spare 25 mB growth medium out; on the other hand, it also means that I have to do it multiple times until I fully automate the incubator.
My proposals are listed here:
- change
fluid.amount >= 500
tofluid.amount > 500
, so that it's a bit easier to deal with. Or, - remove the amount restriction, which is probably against the initial design.
@mezz If everything is OK, you can close