From d78e28ef3938d7dfe83a7d2cc07496e99b350436 Mon Sep 17 00:00:00 2001 From: TheEpicGamer274 <102255081+TheEpicGamer274@users.noreply.github.com> Date: Mon, 19 Jun 2023 00:41:49 -0400 Subject: Adding Circuit requirement for data orb repository to tooltip and removing a false tooltip (#675) --- .../machines/multi/production/GregtechMTE_ElementalDuplicator.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java index 4b9e642c5f..b9508c4fe8 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java @@ -78,9 +78,10 @@ public class GregtechMTE_ElementalDuplicator extends GregtechMeta_MultiBlockBase GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder(); tt.addMachineType(getMachineType()).addInfo("Produces Elemental Material from UU Matter") .addInfo("Speed: +100% | EU Usage: 100% | Parallel: 8 * Tier").addInfo("Maximum 1x of each bus/hatch.") - .addInfo("Does not require both Output Hatch & Bus").addPollutionAmount(getPollutionPerSecond(null)) - .addSeparator().beginStructureBlock(9, 6, 9, true).addController("Top Center") - .addCasingInfoMin("Elemental Confinement Shell", 138, false) + .addInfo("Requires circuit 1-16 in your Data Orb Repository") + .addInfo("depending on what Data Orb you want to prioritize") + .addPollutionAmount(getPollutionPerSecond(null)).addSeparator().beginStructureBlock(9, 6, 9, true) + .addController("Top Center").addCasingInfoMin("Elemental Confinement Shell", 138, false) .addCasingInfoMin("Matter Fabricator Casing", 24, false) .addCasingInfoMin("Particle Containment Casing", 24, false) .addCasingInfoMin("Matter Generation Coil", 24, false) -- cgit