aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod
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/xmod
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/xmod')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialMacerator.java6
1 files changed, 5 insertions, 1 deletions
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++;