diff options
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/core/lib/CORE.java | 2 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialMacerator.java | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/lib/CORE.java b/src/Java/gtPlusPlus/core/lib/CORE.java index 219b817e94..df383ae747 100644 --- a/src/Java/gtPlusPlus/core/lib/CORE.java +++ b/src/Java/gtPlusPlus/core/lib/CORE.java @@ -18,7 +18,7 @@ public class CORE { public static final String name = "GT++"; public static final String MODID = "miscutils"; - public static final String VERSION = "1.4.9-prerelease"; + public static final String VERSION = "1.4.9-release"; public static final String MASTER_VERSION = NetworkUtils.getContentFromURL("https://raw.githubusercontent.com/draknyte1/GTplusplus/master/Recommended.txt").toLowerCase(); public static boolean isModUpToDate = Utils.isModUpToDate(); public static boolean DEBUG = false; diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialMacerator.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialMacerator.java index ef3e90ab17..c80c416120 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialMacerator.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialMacerator.java @@ -178,7 +178,7 @@ extends GregtechMeta_MultiBlockBase { else if (vUsedSlots >= vTE.getSizeInventory()-outputItemCount){ //Not enough output slots if (vUsedSlots > vTE.getSizeInventory()-outputItemCount){ - if (arrayPos == 5){ + if (arrayPos == 4){ Utils.LOG_INFO("Not Enough Output slots in top hatch"); return false; } @@ -190,6 +190,10 @@ extends GregtechMeta_MultiBlockBase { if (vUsedSlots == vTE.getSizeInventory()){ Utils.LOG_INFO("Not Enough Output slots in hatch - "+arrayPos+" - [0-4] - 0 = Bottom | 4 = Top"); mValidOutputSlots[arrayPos] = false; + if (arrayPos == 4){ + Utils.LOG_INFO("Not Enough Output slots in top hatch"); + return false; + } } //Count up a position in the boolean array. arrayPos++; |