aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-10-28 03:47:35 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-10-28 03:47:35 +1000
commit5c9b0affe1d734cc480e85f94f0205ad0d8078f3 (patch)
tree2556d3cf6b236edff6ce8774cf143c23d4411b84 /src/Java/gtPlusPlus
parent4cc26594cd7d0d317db95b5174c96b1302e41eb9 (diff)
downloadGT5-Unofficial-5c9b0affe1d734cc480e85f94f0205ad0d8078f3.tar.gz
GT5-Unofficial-5c9b0affe1d734cc480e85f94f0205ad0d8078f3.tar.bz2
GT5-Unofficial-5c9b0affe1d734cc480e85f94f0205ad0d8078f3.zip
+ Added a log message to the Maceration Stack.
^ Bumped mod version to v1.4.9-release
Diffstat (limited to 'src/Java/gtPlusPlus')
-rw-r--r--src/Java/gtPlusPlus/core/lib/CORE.java2
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialMacerator.java6
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++;