mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 19:25:13 -05:00
fix GregTech Modern output ingredients not being unified
This commit is contained in:
parent
eba5be3090
commit
d40cabbe81
1 changed files with 13 additions and 1 deletions
|
@ -29,7 +29,19 @@ public class GregTechModernRecipeUnifier implements RecipeUnifier {
|
|||
RecipeConstants.OUTPUTS,
|
||||
RecipeConstants.TICK_OUTPUTS
|
||||
).forEach(key ->
|
||||
builder.put(key, (json, ctx) -> createContentReplacement(json, ctx, ctx::createResultReplacement))
|
||||
builder.put(
|
||||
key,
|
||||
(json, ctx) -> createContentReplacement(
|
||||
json,
|
||||
ctx,
|
||||
element -> ctx.createResultReplacement(
|
||||
element,
|
||||
true,
|
||||
RecipeConstants.ITEM,
|
||||
RecipeConstants.INGREDIENT
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue