Skip to content

Commit 6359fcd

Browse files
committed
Fixed catalyst checking for crucible recipes, closes #41
1 parent 9fbcda5 commit 6359fcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/buuz135/thaumicjei/category/CrucibleCategory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public CrucibleWrapper(CrucibleRecipe recipe) {
120120

121121
@Override
122122
public void getIngredients(IIngredients ingredients) {
123-
ingredients.setInput(ItemStack.class, recipe.getCatalyst().getMatchingStacks()[0]);
123+
ingredients.setInput(ItemStack.class, recipe.getCatalyst());
124124
ingredients.setInputs(AspectList.class, Arrays.stream(recipe.getAspects().getAspectsSortedByAmount()).map(aspect -> new AspectList().add(aspect, recipe.getAspects().getAmount(aspect))).collect(Collectors.toList()));
125125
ingredients.setOutput(ItemStack.class, recipe.getRecipeOutput());
126126
}

0 commit comments

Comments
 (0)