From 1f1809d36813f134627efa38ecf198132b3d53e5 Mon Sep 17 00:00:00 2001 From: draknyte1 Date: Thu, 30 Mar 2017 08:16:01 +1000 Subject: % Replaced Industrial Sifter air blocks with Sieve Grates. + Allowed casing blocks to have transparency. --- .../machines/multi/GregtechMetaTileEntity_IndustrialSifter.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java index 8ba4200d21..8b3fe7b0ef 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java @@ -239,9 +239,9 @@ extends GregtechMeta_MultiBlockBase { if (((i != -2) && (i != 2)) && ((j != -2) && (j != 2))) { // Reactor Floor & Roof (Inner 5x5) + Mufflers, Dynamos and Fluid outputs. - if ((h == 0) || (h == 2)) { + if ((h == 0) || (h == 2 || h == 1)) { - if (h == 2){ + if (h == 2 || h == 1){ //If not a hatch, continue, else add hatch and continue. if ((!this.addMufflerToMachineList(tTileEntity, 78)) && (!this.addOutputToMachineList(tTileEntity, 78)) && (!this.addDynamoToMachineList(tTileEntity, 78))) { if (aBaseMetaTileEntity.getBlockOffset(xDir + i, h, zDir + j) != ModBlocks.blockCasings2Misc) { @@ -272,7 +272,7 @@ extends GregtechMeta_MultiBlockBase { } // Inside 2 layers, mostly air - else { + /*else { // Reactor Inner 5x5 //if ((i != -1 && i != 1) && (j != -1 && j != 1)) { if (!aBaseMetaTileEntity.getAirOffset(xDir + i, h, zDir + j)) { @@ -280,7 +280,7 @@ extends GregtechMeta_MultiBlockBase { return false; } - } + }*/ } //Dealt with inner 5x5, now deal with the exterior. -- cgit