Skip to content

Commit

Permalink
fixes #26
Browse files Browse the repository at this point in the history
  • Loading branch information
codetaylor committed Feb 1, 2018
1 parent 8e93d84 commit 823a0a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.6.17
* Fixed: Recipes with no secondary outputs render empty secondary output in JEI (#26)

1.6.16
* Changed: updated zh_cn.lang (PR#23 DYColdWind)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ public JEIRecipeWrapperMortar(RecipeMortar recipe) {

this.outputs.add(recipe.getOutput());

if (recipe.getSecondaryOutput() != null) {
if (recipe.getSecondaryOutput() != null
&& !recipe.getSecondaryOutput().isEmpty()) {
this.outputs.add(recipe.getSecondaryOutput());
}

Expand Down

0 comments on commit 823a0a9

Please sign in to comment.