diff options
author | Dream-Master <dream-master@gmx.net> | 2017-07-02 15:10:36 +0200 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2017-07-02 15:10:36 +0200 |
commit | 3db2a11f4b1770d140c32fabe09e61c519b44d2f (patch) | |
tree | 5dd403d548964446bde7532e0fbfd5544d671254 /src/main/java/gregtech | |
parent | ce5051b8a806a97cf8ff6da9a504422efd49d13d (diff) | |
download | GT5-Unofficial-3db2a11f4b1770d140c32fabe09e61c519b44d2f.tar.gz GT5-Unofficial-3db2a11f4b1770d140c32fabe09e61c519b44d2f.tar.bz2 GT5-Unofficial-3db2a11f4b1770d140c32fabe09e61c519b44d2f.zip |
change Pyroluse Overn using now Cupronickel Coils too
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java index f87c9fafed..4712d5393a 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java @@ -36,7 +36,7 @@ public class GT_MetaTileEntity_PyrolyseOven extends GT_MetaTileEntity_MultiBlock "Controller Block for the Pyrolyse Oven", "Industrial Charcoal producer and Oil from Plants", "Size(WxHxD): 5x4x5, Controller (Bottom center)", - "3x1x3 Kanthal Heating Coils (At the center of the bottom layer)", + "3x1x3 Cupronickel or Kanthal Heating Coils (At the center of the bottom layer)", "1x Input Hatch/Bus (Centered 3x1x3 area in Top layer)", "1x Output Hatch/Bus (Any bottom layer casing)", "1x Maintenance Hatch (Any bottom layer casing)", @@ -131,11 +131,11 @@ public class GT_MetaTileEntity_PyrolyseOven extends GT_MetaTileEntity_MultiBlock for (int h = 0; h < 4; h++) { IGregTechTileEntity tTileEntity = aBaseMetaTileEntity.getIGregTechTileEntityOffset(xDir + i, h, zDir + j); if ((i != -2 && i != 2) && (j != -2 && j != 2)) {// innerer 3x3 ohne h�he - if (h == 0) {// innen boden (kantal coils) + if (h == 0) {// innen boden (Cupronickel oder Kanthal coils) if (aBaseMetaTileEntity.getBlockOffset(xDir + i, h, zDir + j) != GregTech_API.sBlockCasings5) { return false; } - if (aBaseMetaTileEntity.getMetaIDOffset(xDir + i, h, zDir + j) != 1) { + if (aBaseMetaTileEntity.getMetaIDOffset(xDir + i, h, zDir + j) != 0 && aBaseMetaTileEntity.getMetaIDOffset(xDir + i, h, zDir + j) != 1) { return false; } } else if (h == 3) {// innen decke (ulv casings + input + muffler) |