Support for recipes with empty output #1701
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
This PR adds an extra flag in
RecipeMap
to enable creation of recipemaps with empty outputs allowed.Implementation Details
Recipes with empty outputs are not allowed by default. The exceptions were for fuel recipes, which is checked with hardcoded convention of negative EU/t indicating the recipe is a fuel recipe.
In this PR, a new flag,
allowEmptyOutput
, is added toRecipeMap
. Setting the flag totrue
makes empty output check to be bypassed during recipe validation. There's no option of un-setting the flag.Additionally, I've removed the check right below empty output check, as it is already checked by above statements and does not affect the actual validation result.
The other changes are just minor documentation changes and cleanups.
Outcome
Addons may be able to
Additional Information
To retain compatibility, the negative EU/t is still explicitly checked. We should remove the check after giving some time for users to migrate to
allowEmptyOutput
flag.Potential Compatibility Issues
None