Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Commit 42a553c

Browse files
author
Quetz4l
authored
changing the magic letters to an understandable modes (9in1) (#860)
changing the magic letters to an understandable mode * bs
1 parent d42582d commit 42a553c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/main/java/gtPlusPlus/core/handler/BookHandler.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ public static void run() {
149149
"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.",
150150
"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.",
151151
"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.",
152-
"[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.",
153-
"[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.",
154-
"[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.", });
152+
"[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.",
153+
"[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.",
154+
"[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.", });
155155

156156
book_NuclearManual = writeBookTemplate(
157157
"Manual_NuclearStuff_1",

src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialMultiMachine.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,15 @@ protected GT_Multiblock_Tooltip_Builder createTooltip() {
128128
.addInfo("250% faster than using single block machines of the same voltage")
129129
.addInfo("Only uses 80% of the EU/t normally required").addInfo("Processes two items per voltage tier")
130130
.addInfo(
131-
"Machine Type: [A] - " + EnumChatFormatting.YELLOW
131+
"Machine Type: Metal - " + EnumChatFormatting.YELLOW
132132
+ aBuiltStrings[0]
133133
+ EnumChatFormatting.RESET)
134134
.addInfo(
135-
"Machine Type: [B] - " + EnumChatFormatting.YELLOW
135+
"Machine Type: Fluid - " + EnumChatFormatting.YELLOW
136136
+ aBuiltStrings[1]
137137
+ EnumChatFormatting.RESET)
138138
.addInfo(
139-
"Machine Type: [C] - " + EnumChatFormatting.YELLOW
139+
"Machine Type: Misc - " + EnumChatFormatting.YELLOW
140140
+ aBuiltStrings[2]
141141
+ EnumChatFormatting.RESET)
142142
.addInfo("Read Multi-Machine Manual for extra information")

0 commit comments

Comments
 (0)