Skip to content

Commit

Permalink
fix: where the shit did this method go? (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
screret authored Nov 3, 2023
1 parent 73e8fcf commit dd0aa81
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,7 @@ public CustomMultiblockBuilder onBlockEntityRegister(NonNullConsumer<BlockEntity
public CustomMultiblockBuilder recipeTypes(GTRecipeType... recipeTypes) {
for (var builder : builders) {
if (builder == null) continue;
for(GTRecipeType type : recipeTypes){
builder.recipeType(type);
}
builder.recipeTypes(recipeTypes);
}
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ public GTRecipeJS outputEU(long eu) {
return output(EURecipeCapability.CAP, eu);
}

public GTRecipeJS itemInputs(InputItem... inputs) {
return inputItems(inputs);
}

public GTRecipeJS itemInput(UnificationEntry input) {
return inputItems(input);
}
Expand Down

0 comments on commit dd0aa81

Please sign in to comment.