diff options
author | Quetz4l <Zereff06@gmail.com> | 2024-03-24 19:27:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-24 18:27:17 +0100 |
commit | 42a553c5d554fc1d68adb1241fa01d7d181bd48b (patch) | |
tree | 8501df6af1a33586da402aae54f1c60a660dcc6f | |
parent | d42582d488a3cf2fd5a74352553a1d09a1ad5f5e (diff) | |
download | GT5-Unofficial-42a553c5d554fc1d68adb1241fa01d7d181bd48b.tar.gz GT5-Unofficial-42a553c5d554fc1d68adb1241fa01d7d181bd48b.tar.bz2 GT5-Unofficial-42a553c5d554fc1d68adb1241fa01d7d181bd48b.zip |
changing the magic letters to an understandable modes (9in1) (#860)
changing the magic letters to an understandable mode
* bs
2 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/gtPlusPlus/core/handler/BookHandler.java b/src/main/java/gtPlusPlus/core/handler/BookHandler.java index 9a121bdadc..155d46c40d 100644 --- a/src/main/java/gtPlusPlus/core/handler/BookHandler.java +++ b/src/main/java/gtPlusPlus/core/handler/BookHandler.java @@ -149,9 +149,9 @@ public class BookHandler { "This Multiblock, depending upon the mode used, can function as a variety of different machines. The idea behind this, was that most of these machines are rather niche compared to any others, as such, not used often.", "To build, you need to construct a hollow 3x3x3 structure made from Multi-Use casings, With a minimum of 6. Any Casing position can be substituted out with an Input Hatch/Bus, an Output Hatch/Bus, Muffler, Maint. Hatch or Energy Injector Hatch.", "The Mode can be set by using a Screwdriver on the controller block. Each mode allows the use of Numbered Circuits, to allow a different machine 'type' for each input bus.", - "[Metal Work] Mode A - Allows the multiblock to function as a Compressor, a Lathe or an Electro-Magnet. To allow a hatch to run in Compressor mode, insert a No. 20 circuit. For Lathe, use No. 21 and for Electro-Magnet use No. 22.", - "[Fluid Work] Mode B - Allows the multiblock to function as a Fermenter, a Fluid Extractor or an Extractor. To allow a hatch to run in Fermenter mode, insert a No. 20 circuit. For Fluid Extractor, use No. 21 and for Extractor use No. 22.", - "[Misc. Work] Mode C - Allows the multiblock to function as a Laser Engraver, an Autoclave or a Fluid Solidifier. To allow a hatch to run in Laser Engraver mode, insert a No. 20 circuit. For Autoclave, use No. 21 and for Solidifier use No. 22.", }); + "[Metal Work] Mode Metal - Allows the multiblock to function as a Compressor, a Lathe or an Electro-Magnet. To allow a hatch to run in Compressor mode, insert a No. 20 circuit. For Lathe, use No. 21 and for Electro-Magnet use No. 22.", + "[Fluid Work] Mode Fluid - Allows the multiblock to function as a Fermenter, a Fluid Extractor or an Extractor. To allow a hatch to run in Fermenter mode, insert a No. 20 circuit. For Fluid Extractor, use No. 21 and for Extractor use No. 22.", + "[Misc. Work] Mode Misc - Allows the multiblock to function as a Laser Engraver, an Autoclave or a Fluid Solidifier. To allow a hatch to run in Laser Engraver mode, insert a No. 20 circuit. For Autoclave, use No. 21 and for Solidifier use No. 22.", }); book_NuclearManual = writeBookTemplate( "Manual_NuclearStuff_1", diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialMultiMachine.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialMultiMachine.java index b0a139ec3c..17e1572cb1 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialMultiMachine.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialMultiMachine.java @@ -128,15 +128,15 @@ public class GregtechMetaTileEntity_IndustrialMultiMachine extends .addInfo("250% faster than using single block machines of the same voltage") .addInfo("Only uses 80% of the EU/t normally required").addInfo("Processes two items per voltage tier") .addInfo( - "Machine Type: [A] - " + EnumChatFormatting.YELLOW + "Machine Type: Metal - " + EnumChatFormatting.YELLOW + aBuiltStrings[0] + EnumChatFormatting.RESET) .addInfo( - "Machine Type: [B] - " + EnumChatFormatting.YELLOW + "Machine Type: Fluid - " + EnumChatFormatting.YELLOW + aBuiltStrings[1] + EnumChatFormatting.RESET) .addInfo( - "Machine Type: [C] - " + EnumChatFormatting.YELLOW + "Machine Type: Misc - " + EnumChatFormatting.YELLOW + aBuiltStrings[2] + EnumChatFormatting.RESET) .addInfo("Read Multi-Machine Manual for extra information") |