Skip to content

Commit 3e01f37

Browse files
authored
Add a tooltip to the LCR saying it can process normal CR recipes. (GregTechCEu#2803)
1 parent 9b2950f commit 3e01f37

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/main/java/gregtech/common/metatileentities/multi/electric/MetaTileEntityLargeChemicalReactor.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public MetaTileEntity createMetaTileEntity(IGregTechTileEntity tileEntity) {
5252
}
5353

5454
@Override
55-
protected BlockPattern createStructurePattern() {
55+
protected @NotNull BlockPattern createStructurePattern() {
5656
TraceabilityPredicate casing = states(getCasingState()).setMinGlobalLimited(10);
5757
TraceabilityPredicate abilities = autoAbilities();
5858
return FactoryBlockPattern.start()
@@ -134,10 +134,13 @@ public SoundEvent getBreakdownSound() {
134134
return GTSoundEvents.BREAKDOWN_ELECTRICAL;
135135
}
136136

137+
@SideOnly(Side.CLIENT)
137138
@Override
138-
public void addInformation(ItemStack stack, @Nullable World player, List<String> tooltip, boolean advanced) {
139+
public void addInformation(ItemStack stack, @Nullable World player, @NotNull List<String> tooltip,
140+
boolean advanced) {
139141
super.addInformation(stack, player, tooltip, advanced);
140142
tooltip.add(TooltipHelper.RAINBOW_SLOW + I18n.format("gregtech.machine.perfect_oc"));
143+
tooltip.add(I18n.format("gregtech.multiblock.large_chemical_reactor.description.0"));
141144
}
142145

143146
@SideOnly(Side.CLIENT)

src/main/resources/assets/gregtech/lang/en_us.lang

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ gregtech.multiblock.fusion_reactor.zpm.description=The Fusion Reactor Mark 2 is
161161
gregtech.multiblock.fusion_reactor.uv.description=The Fusion Reactor Mark 3 is a large multiblock structure used for fusing elements into heavier ones. It can only use UV Energy Hatches. For every Hatch it has, its buffer increases by 40M EU, and has a maximum of 640M.
162162
gregtech.multiblock.fusion_reactor.heat=Heat: %s
163163
gregtech.multiblock.large_chemical_reactor.description=The Large Chemical Reactor performs chemical reactions at 100%% energy efficiency. Overclocks multiply both speed and energy by 4. The multiblock requires exactly 1 Cupronickel Coil Block, which must be placed adjacent to the PTFE Pipe casing located in the center.
164+
gregtech.multiblock.large_chemical_reactor.description.0=Performs all §eChemical Reactor§7 and §eLarge Chemical Reactor§7 recipes
164165
gregtech.multiblock.primitive_water_pump.description=The Primitive Water Pump is a pre-Steam Era multiblock that collects water once per second, depending on the Biome it is in. It can use a Pump, ULV, or LV Output Hatch, increasing the amount of water per tier. Follows the formula: Biome Coefficient * Hatch Multiplier.
165166
gregtech.multiblock.primitive_water_pump.extra1=Biome Coefficient:/n Ocean, River: 1000 L/s/n Swamp: 800 L/s/n Jungle: 350 L/s/n Snowy: 300 L/s/n Plains, Forest: 250 L/s/n Taiga: 175 L/s/n Beach: 170 L/s/n Other: 100 L/s
166167
gregtech.multiblock.primitive_water_pump.extra2=Hatch Multipliers:/n Pump Hatch: 1x/n ULV Output Hatch: 2x/n LV Output Hatch: 4x/n/nWhile raining in the Pump's Biome, the total water production will be increased by 50%%.

0 commit comments

Comments
 (0)