aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxim <maxim235@gmx.de>2023-06-25 15:53:31 +0200
committerGitHub <noreply@github.com>2023-06-25 15:53:31 +0200
commit77813f16150086d19229895e128d4703939b21dc (patch)
tree267dd2f1fe83ef626bdac052a48126f735615871 /src
parentb6c69d71f9b85603621e599586c72aaee7c8b5fe (diff)
downloadGT5-Unofficial-77813f16150086d19229895e128d4703939b21dc.tar.gz
GT5-Unofficial-77813f16150086d19229895e128d4703939b21dc.tar.bz2
GT5-Unofficial-77813f16150086d19229895e128d4703939b21dc.zip
Added more information to PrAss tooltip (#170)
Diffstat (limited to 'src')
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java b/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java
index 640cafb774..eb4ad6a79f 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java
@@ -338,9 +338,12 @@ public class PreciseAssembler extends GT_MetaTileEntity_LongPowerUsageBase<Preci
.addInfo("But gives more parallel with more advanced one.").addInfo("It is 100% faster in Normal Mode.")
.addInfo("MK-I = 32x, MK-II = 64x, MK-III = 128x").addPollutionAmount(getPollutionPerSecond(null))
.addInfo("The structure is too complex!").addInfo(BLUE_PRINT_INFO).addSeparator()
- .addController("Front bottom").addInputHatch("Any Casing").addInputBus("Any Casing")
- .addOutputHatch("Any Casing").addOutputBus("Any Casing").addEnergyHatch("Any Casing")
- .addMufflerHatch("Any Casing").addMaintenanceHatch("Any Casing").toolTipFinisher("Good Generator");
+ .beginStructureBlock(9, 5, 5, true).addController("Front bottom")
+ .addCasingInfoExactly("Machine Casing", 21, true).addCasingInfoExactly("Glass (EV+)", 42, false)
+ .addCasingInfoRange("Precise Electronic Unit Casing", 42, 86, true).addInputHatch("Any Casing")
+ .addInputBus("Any Casing").addOutputHatch("Any Casing").addOutputBus("Any Casing")
+ .addEnergyHatch("Any Casing").addMufflerHatch("Any Casing").addMaintenanceHatch("Any Casing")
+ .toolTipFinisher("Good Generator");
return tt;
}