aboutsummaryrefslogtreecommitdiff
path: root/src/Java
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-08-24 13:33:42 +1000
committerAlkalus <draknyte1@hotmail.com>2017-08-24 13:33:42 +1000
commit2ce6f51eb26de8c3b0ba86b6480438fae44fe9f5 (patch)
tree77f593936fff86cc7a9d6b44072e7edfa5d713be /src/Java
parent7dfe9ef6ce26546b06fd8b08e9ffe2cd5e24ec0f (diff)
downloadGT5-Unofficial-2ce6f51eb26de8c3b0ba86b6480438fae44fe9f5.tar.gz
GT5-Unofficial-2ce6f51eb26de8c3b0ba86b6480438fae44fe9f5.tar.bz2
GT5-Unofficial-2ce6f51eb26de8c3b0ba86b6480438fae44fe9f5.zip
% Tweaked FFPP Tooltip.
- Removed the dual Maint. hatch requirement from the FFPP.
Diffstat (limited to 'src/Java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Refinery.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Refinery.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Refinery.java
index a3a62aa7d5..cf1cd7b439 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Refinery.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Refinery.java
@@ -42,13 +42,13 @@ public class GregtechMetaTileEntity_Refinery extends GT_MetaTileEntity_MultiBloc
"Controller Block for the Fission Fuel Processing Unit",
"Size(WxHxD): 3x9x3", "Controller (Front middle at bottom)",
"3x2x3 Base platform of Hastelloy-X",
- "1x7x1 Incoloy-DS Fluid Containment Block pillar (Center of base)",
- "1x4x1 Hastelloy-N Sealant Blocks (Each Incoloy-DS Fluid Containment side and on top)",
- "1x1x1 Zeron-100 Reactor Shielding (Second Sealant Tower layer, Surrounding Fluid Containment)",
+ "1x6x1 Incoloy-DS Fluid Containment Block pillar (Center of base, From layer 3 upwards)",
+ "4x Zeron-100 Reactor Shielding (Each side of Second Sealant Tower layer, Surrounding Incoloy-DS Fluid Containment)",
+ "Hastelloy-N Sealant Blocks (Each side of Incoloy-DS Fluid Containment casings, except layer 2 and one on top)",
"4x Input Hatch (One of base platform)",
"2x Output Hatch (One of base platform)",
"1x Output Bus (One of base platform)",
- "2x Maintenance Hatch (One of base platform)",
+ "1x Maintenance Hatch (One of base platform)",
"1x ZPM or better Muffler (One of base platform)",
"1x Energy Hatch (One of base platform)",
CORE.GT_Tooltip
@@ -264,7 +264,7 @@ public class GregtechMetaTileEntity_Refinery extends GT_MetaTileEntity_MultiBloc
if ((this.mInputHatches.size() != 4) || (this.mOutputHatches.size() != 2) ||
(this.mOutputBusses.size() != 1) || (this.mMufflerHatches.size() != 1) ||
- (this.mMaintenanceHatches.size() != 2) || (this.mEnergyHatches.size() != 1)){
+ (this.mMaintenanceHatches.size() != 1) || (this.mEnergyHatches.size() != 1)){
Utils.LOG_INFO("Wrong Hatch count.");
return false;
}