diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-11-16 18:56:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 18:56:47 +0100 |
commit | e217ec4291357c8ee0554f8d1798821bfbca5b5d (patch) | |
tree | 9b6275fd7ef7145829365e49488567348b98af6b /src/Java/gtPlusPlus/xmod/gregtech/loaders | |
parent | ec98da4ac00f8b3b0eafaec04474df2b6d868e1f (diff) | |
parent | 6ebf7fb8fb54b82422315d7337b257d1abf95a46 (diff) | |
download | GT5-Unofficial-e217ec4291357c8ee0554f8d1798821bfbca5b5d.tar.gz GT5-Unofficial-e217ec4291357c8ee0554f8d1798821bfbca5b5d.tar.bz2 GT5-Unofficial-e217ec4291357c8ee0554f8d1798821bfbca5b5d.zip |
Merge pull request #38 from iouter/master
Separate recipes of the multiblock mixer
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MultisUsingFluidInsteadOfCells.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MultisUsingFluidInsteadOfCells.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MultisUsingFluidInsteadOfCells.java index b94dbfa51f..90d7aaa806 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MultisUsingFluidInsteadOfCells.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MultisUsingFluidInsteadOfCells.java @@ -93,7 +93,7 @@ public class RecipeGen_MultisUsingFluidInsteadOfCells { if (aFoundFluid == null) { for (ItemStack aBadStack : mItemsToIgnore) { if (doesItemMatchIgnoringStackSize(aInputStack, aBadStack)) { - continue recipe; // Skip this recipe entirely if we find an item we don't like + continue recipe; // Skip this recipe entirely if we find an item we don't like } } if (!isEmptyCell(aInputStack)) { |