diff options
| author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-03-28 21:33:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-28 22:33:25 +0200 |
| commit | f2c5d062d02ef1fa80752baf17ba37b783e90323 (patch) | |
| tree | 063ca968de777a081b9eabb1f7c2f5e5a9ef9862 /src/main/java/gtPlusPlus/xmod/gregtech/common | |
| parent | ae898e4188779a23edea0b12621c379d9c7876e3 (diff) | |
| download | GT5-Unofficial-f2c5d062d02ef1fa80752baf17ba37b783e90323.tar.gz GT5-Unofficial-f2c5d062d02ef1fa80752baf17ba37b783e90323.tar.bz2 GT5-Unofficial-f2c5d062d02ef1fa80752baf17ba37b783e90323.zip | |
Super Glue Fixes (#161)
- Reworked recipe EU/t and casing tiers to divide the Chemical Plant recipes evenly between 3 tiers. The purpose of this change is to make it so this line can be automated with 3 plants, one of each kind;
- Changed Chemical Plant's minimum base outside casings to allow some more hatches before the multi fails to form. It's a large, smart multiblock with many casings that are never replaced with hatches, so I believe the amount of allowed hatches at once should be increased;
- A few fixes for recipes that were missing, or implemented incorrectly.
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common')
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 2 |
1 files changed, 1 insertions, 1 deletions
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 daad2f50da..ca1757f98f 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 @@ -334,7 +334,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase<Gregt mPipeCasingTier = 0; mCoilTier = 0; mCatalystBuses.clear(); - if (checkPiece(mName, 3, 6, 0) && mCasing >= 80) { + if (checkPiece(mName, 3, 6, 0) && mCasing >= 70) { for (int i = 0; i < 8; i++) { if (checkCasing[i] == mCasing) { mSolidCasingTier = i; |
