diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-05-12 17:00:15 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-05-12 17:00:15 +1000 |
commit | 75d5897f4db4e97feca4fe4d978cc5823cbbb150 (patch) | |
tree | 23f0527839930bb790cb68a5a2db86429768d161 /src/Java/gregtech/api/util | |
parent | 30c22ef725680a8e63a950bf34343d68c96340b2 (diff) | |
download | GT5-Unofficial-75d5897f4db4e97feca4fe4d978cc5823cbbb150.tar.gz GT5-Unofficial-75d5897f4db4e97feca4fe4d978cc5823cbbb150.tar.bz2 GT5-Unofficial-75d5897f4db4e97feca4fe4d978cc5823cbbb150.zip |
% Initial Commit
Diffstat (limited to 'src/Java/gregtech/api/util')
-rw-r--r-- | src/Java/gregtech/api/util/Recipe_GT.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Java/gregtech/api/util/Recipe_GT.java b/src/Java/gregtech/api/util/Recipe_GT.java index eb8d8f546f..c9d3194aad 100644 --- a/src/Java/gregtech/api/util/Recipe_GT.java +++ b/src/Java/gregtech/api/util/Recipe_GT.java @@ -984,7 +984,8 @@ public class Recipe_GT extends GT_Recipe implements IComparableRecipe{ if (mColumn >= 3) { mColumn = 0; mRow++; - } + } + if (mColumn <= 2 && mRow <= 3) outputStacks.add( (PositionedStack) new GT_NEI_MultiBlockHandler.FixedPositionedStack( (Object) mNEIMap.get(i), xPos[mColumn++], yPos[mRow])); @@ -1148,7 +1149,8 @@ public class Recipe_GT extends GT_Recipe implements IComparableRecipe{ if (mColumn >= 3) { mColumn = 0; mRow++; - } + } + if (mColumn <= 2 && mRow <= 3) outputStacks.add( (PositionedStack) new GT_NEI_MultiBlockHandler.FixedPositionedStack( (Object) mNEIMap.get(i), xPos[mColumn++], yPos[mRow])); |