We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6654e6 commit b2a3d3dCopy full SHA for b2a3d3d
src/main/java/gregtech/api/recipes/RecyclingHandler.java
@@ -82,7 +82,7 @@ public class RecyclingHandler {
82
public static @Nullable ItemMaterialInfo getRecyclingIngredients(List<GTRecipeInput> inputs, int outputCount) {
83
Object2LongMap<Material> materialStacksExploded = new Object2LongOpenHashMap<>();
84
for (GTRecipeInput input : inputs) {
85
- if (input == null) continue;
+ if (input == null || input.isNonConsumable()) continue;
86
ItemStack[] inputStacks = input.getInputStacks();
87
if (inputStacks == null || inputStacks.length == 0) continue;
88
ItemStack inputStack = inputStacks[0];
0 commit comments