Skip to content

Commit

Permalink
Fix recipematches with multiple items not returning all of them
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Apr 27, 2016
1 parent fa7fe71 commit f5497bb
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/slimeknights/mantle/util/RecipeMatch.java
Expand Up @@ -194,9 +194,6 @@ public ItemCombination(int amountMatched, ItemStack... stacks) {

@Override
public List<ItemStack> getInputs() {
if(itemStacks.length == 0 || itemStacks.length > 1) {
return ImmutableList.of();
}
return ImmutableList.copyOf(itemStacks);
}

Expand Down

0 comments on commit f5497bb

Please sign in to comment.