We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b31de7 commit 3308d16Copy full SHA for 3308d16
src/main/java/gregtech/api/capability/impl/AbstractRecipeLogic.java
@@ -425,7 +425,7 @@ protected void setupRecipe(Recipe recipe) {
425
* @return all possible chanced item outputs paired with their computed chances for the currently active recipe
426
*/
427
public List<Pair<ItemStack, Integer>> getChancedItemOutputs() {
428
- if(itemOutputs == null)
+ if(chancedItemOutputs == null)
429
return Collections.emptyList();
430
return chancedItemOutputs;
431
}
0 commit comments