aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dependencies.gradle2
-rw-r--r--src/main/java/gtPlusPlus/core/handler/BookHandler.java22
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java9
3 files changed, 24 insertions, 9 deletions
diff --git a/dependencies.gradle b/dependencies.gradle
index e78203f22f..06fefead9b 100644
--- a/dependencies.gradle
+++ b/dependencies.gradle
@@ -1,5 +1,5 @@
dependencies {
- compile('com.github.GTNewHorizons:GT5-Unofficial:5.09.40.65-pre:dev')
+ compile('com.github.GTNewHorizons:GT5-Unofficial:5.09.40.78:dev')
compile('com.github.GTNewHorizons:StructureLib:1.0.16:dev')
compile('com.github.GTNewHorizons:NotEnoughItems:2.2.15-GTNH:dev')
compile('com.github.GTNewHorizons:CodeChickenCore:1.1.4:dev')
diff --git a/src/main/java/gtPlusPlus/core/handler/BookHandler.java b/src/main/java/gtPlusPlus/core/handler/BookHandler.java
index 49a9add7c5..1363a70fe4 100644
--- a/src/main/java/gtPlusPlus/core/handler/BookHandler.java
+++ b/src/main/java/gtPlusPlus/core/handler/BookHandler.java
@@ -188,7 +188,7 @@ public class BookHandler {
book_MultiChemicalPlant = writeBookTemplate(
- "book_Multi_ChemicalPlant", "Chemical Plant Manual", "Alkalus",
+ "book_Multi_ChemicalPlant", "Chemical Plant Manual", "Alkalus",
new String[] {
// Intro
@@ -201,9 +201,13 @@ public class BookHandler {
"T1 50% , T2 100% , T3 150%, etc" + "\n",
"Higher tier pipe casings boost parallel"+ "\n" +
- "and reduce catalyst consumption" + "\n" +
+ "and reduce catalyst consumption." + "\n" +
"+2 parallel per tier, 20% extra chance of"+ "\n" +
- "not damaging catalyst per tier" + "\n",
+ "not damaging catalyst per tier.",
+
+ "Awakened Draconium Coil (or above) with" + "\n" +
+ "Tungstensteel Pipe Casing" + "\n" +
+ "does not damage catalyst at all.",
// Machine Casings
@@ -244,8 +248,16 @@ public class BookHandler {
"3 - Nichrome" + "\n" +
"4 - Tungstensteel" + "\n" +
"5 - HSS-G" + "\n" +
- "6 - Naquadah" + "\n" +
- "7 - Naquadah Alloy",
+ "6 - HSS-S" + "\n" +
+ "7 - Naquadah" + "\n" +
+ "8 - Naquadah Alloy" + "\n" +
+ "9 - Trinium" + "\n" +
+ "10 - Fluxed Electrum",
+
+ "11 - Awakened Draconium" + "\n" +
+ "12 - Infinity" + "\n" +
+ "13 - Hypogen" + "\n" +
+ "14 - Eternal",
// Requirements
"Multiblock Requirements:" + "\n" + "\n" +
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java
index f0d3eace77..11af6c7edc 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java
@@ -167,8 +167,11 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase<Gregt
case 8: return 11;
case 9: return 6;
case 10: return 9;
+ case 11: return 12;
+ case 12: return 13;
+ case 13: return 14;
+ default: return 0;
}
- return 0;
}
@Override
@@ -270,7 +273,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase<Gregt
.addElement(
'H',
addTieredBlock(
- GregTech_API.sBlockCasings5, GregtechMTE_ChemicalPlant::setCoilMeta, GregtechMTE_ChemicalPlant::getCoilMeta, 11
+ GregTech_API.sBlockCasings5, GregtechMTE_ChemicalPlant::setCoilMeta, GregtechMTE_ChemicalPlant::getCoilMeta, 14
)
)
.addElement(
@@ -344,7 +347,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase<Gregt
mPipeCasingTier = checkPipe - 12;
mCoilTier = coilTier(checkCoil - 1);
updateHatchTexture();
- return mMachineCasingTier >= maxTierOfHatch;
+ return mMachineCasingTier >= 9 || mMachineCasingTier >= maxTierOfHatch;
}
return false;
}