diff options
author | Ruling-0 <47913168+Ruling-0@users.noreply.github.com> | 2024-11-23 13:09:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 20:09:06 +0100 |
commit | 0d21b90f079fdb88becea5e3dff6a2b32c3a4028 (patch) | |
tree | 4f69456b6300b564490153f1cf752c551c2c9cc2 /src | |
parent | 78fc5e969340e0f28617ce2e51480ecf2e0f5628 (diff) | |
download | GT5-Unofficial-0d21b90f079fdb88becea5e3dff6a2b32c3a4028.tar.gz GT5-Unofficial-0d21b90f079fdb88becea5e3dff6a2b32c3a4028.tar.bz2 GT5-Unofficial-0d21b90f079fdb88becea5e3dff6a2b32c3a4028.zip |
Reworked Fluid Shaper Parallels, Tooltip Cleanup, Structure Change (#3508)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Co-authored-by: TheEpicGamer274 <102255081+TheEpicGamer274@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/MTEMultiSolidifier.java | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTEMultiSolidifier.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTEMultiSolidifier.java index d6c32a2185..c371c8cd2c 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/MTEMultiSolidifier.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTEMultiSolidifier.java @@ -75,6 +75,7 @@ public class MTEMultiSolidifier extends MTEExtendedPowerMultiBlockBase<MTEMultiS private static final String MS_RIGHT_MID = "rightmid"; private static final String MS_END = "end"; + private static final int BASE_PARALLELS = 2; private static final int PARALLELS_PER_WIDTH = 3; private static final double DECAY_RATE = 0.025; @@ -106,7 +107,7 @@ public class MTEMultiSolidifier extends MTEExtendedPowerMultiBlockBase<MTEMultiS STRUCTURE_PIECE_MAIN, (transpose( new String[][] { { " ", "BBBBBBB", "BBBBBBB", "BBBBBBB", " " }, - { "BBBBBBB", " ", "D D D D", " ", "AAAAAAA" }, + { "BBBBBBB", " ", "D D D D", " ", "BBBBBBB" }, { "AAAAAAA", " ", " ", " ", "AAAAAAA" }, { "CCCBCCC", " ", "F F F F", " ", "CCCCCCC" }, { "BBB~BBB", "BBBBBBB", "BBBBBBB", "BBBBBBB", "BBBBBBB" } }))) @@ -196,13 +197,13 @@ public class MTEMultiSolidifier extends MTEExtendedPowerMultiBlockBase<MTEMultiS + EnumChatFormatting.GRAY + " to hold different molds") .addInfo("Speeds up to a maximum of 200% faster than singleblock machines while running") - .addInfo("Decays at double the Rate that it Speeds up at") + .addInfo("Decays at double the rate that it speeds up at") .addInfo("Only uses 80% of the EU/t normally required") - .addInfo("Starts with 4 Parallels") - .addInfo("Gain " + PARALLELS_PER_WIDTH + " Parallels per Width Expansion and Multiplied by Voltage Tier") - .addInfo("Energy Hatch Based on Glass Tier, UMV Glass Unlocks all") + .addInfo("Processes " + BASE_PARALLELS + " items per voltage tier") + .addInfo("Processes an additional " + PARALLELS_PER_WIDTH + " items per voltage tier per width expansion") + .addInfo("Energy hatch limited by glass tier, UMV Glass unlocks all") .addInfo(EnumChatFormatting.BLUE + "Pretty Ⱄⱁⰾⰻⰴ, isn't it") - .beginVariableStructureBlock(17, 33, 5, 5, 5, 5, true) + .beginVariableStructureBlock(9, 33, 5, 5, 5, 5, true) .addController("Front Center bottom") .addCasingInfoRange("Solidifier Casing", 91, 211, false) .addCasingInfoRange("Solidifier Radiator", 13, 73, false) @@ -281,7 +282,7 @@ public class MTEMultiSolidifier extends MTEExtendedPowerMultiBlockBase<MTEMultiS } } - return casingAmount >= (91 + width * 20) && mMaintenanceHatches.size() == 1; + return casingAmount >= (91 + width * 20); } @Override @@ -344,7 +345,7 @@ public class MTEMultiSolidifier extends MTEExtendedPowerMultiBlockBase<MTEMultiS } public int getMaxParallelRecipes() { - return 4 + (width * PARALLELS_PER_WIDTH) * GTUtility.getTier(this.getMaxInputVoltage()); + return (BASE_PARALLELS + (width * PARALLELS_PER_WIDTH)) * GTUtility.getTier(this.getMaxInputVoltage()); } @Override |