mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 19:25:13 -05:00
add outputs key to generic recipe unifier
This commit is contained in:
parent
23e61f260a
commit
965c7a5f67
2 changed files with 1 additions and 5 deletions
|
@ -17,6 +17,7 @@ public class GenericRecipeUnifier implements RecipeUnifier {
|
|||
);
|
||||
private static final Set<String> OUTPUT_KEYS = Set.of(
|
||||
RecipeConstants.OUTPUT,
|
||||
RecipeConstants.OUTPUTS,
|
||||
RecipeConstants.RESULT,
|
||||
RecipeConstants.RESULTS,
|
||||
RecipeConstants.OUTPUT_ITEMS
|
||||
|
|
|
@ -13,10 +13,5 @@ public class EnderIORecipeUnifier implements RecipeUnifier {
|
|||
RecipeConstants.ITEM,
|
||||
(json, ctx) -> ctx.createResultReplacement(json, false, RecipeConstants.ITEM)
|
||||
);
|
||||
// sag mill
|
||||
builder.put(
|
||||
RecipeConstants.OUTPUTS,
|
||||
(json, ctx) -> ctx.createResultReplacement(json)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue