From 8ad3edb3b93a5e28cd09c1a308aeee860f5b0478 Mon Sep 17 00:00:00 2001 From: miozune Date: Tue, 19 Jul 2022 09:31:08 +0900 Subject: Chemical Plant fixes (#248) --- .../java/gtPlusPlus/core/handler/BookHandler.java | 22 +++++++++++++++++----- .../chemplant/GregtechMTE_ChemicalPlant.java | 9 ++++++--- 2 files changed, 23 insertions(+), 8 deletions(-) (limited to 'src/main') 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= maxTierOfHatch; + return mMachineCasingTier >= 9 || mMachineCasingTier >= maxTierOfHatch; } return false; } -- cgit