Skip to content

Commit

Permalink
Multi ToolTip unification (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexdoru authored Oct 14, 2024
1 parent b1a8da2 commit 5c7a1bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
// Add your dependencies here

dependencies {
api("com.github.GTNewHorizons:GT5-Unofficial:5.09.50.37:dev")
api("com.github.GTNewHorizons:GT5-Unofficial:5.09.50.41:dev")
api("com.github.GTNewHorizons:Yamcl:0.6.0:dev")
api("com.github.GTNewHorizons:Baubles:1.0.4:dev")

compileOnly("com.github.GTNewHorizons:AkashicTome:1.1.7:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:Avaritia:1.53:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:Avaritia:1.54:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:twilightforest:2.6.34:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:GTNH-Intergalactic:1.4.21:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:Mantle:0.4.1:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.12.11-GTNH:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.12.12-GTNH:dev") { transitive = false }
compileOnly("com.github.GTNewHorizons:WitcheryExtras:1.2.2:dev") { transitive = false }
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") { transitive = false }
compileOnly rfg.deobf("curse.maven:witchery-69673:2234410")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ public String getPipeString() {
@Override
protected MultiblockTooltipBuilder createTooltip() {
final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
tt.addMachineType("Air Filter").addInfo("Controller block for the Electric Air Filter T" + multiTier)
.addInfo("Needs a Turbine in the controller")
tt.addMachineType("Air Filter").addInfo("Needs a Turbine in the controller")
.addInfo("Can process " + (2 * multiTier + 1) + "x" + (2 * multiTier + 1) + " chunks")
.addInfo("Each muffler hatch reduces pollution in one chunk of the working area by:")
.addInfo(
Expand All @@ -214,14 +213,12 @@ protected MultiblockTooltipBuilder createTooltip() {
.addInfo("- Effective muffler tier is limited by energy input tier").addSeparator()
.addInfo("Insert " + ItemList.AdsorptionFilter.getIS().getDisplayName() + " in an input bus")
.addInfo(" to double pollution cleaning amount (30 uses per item)")
.addInfo("Each maintenance issue reduces cleaning amount by 10%").addSeparator()
.beginStructureBlock(3, 4, 3, true).addController("Front bottom")
.addOtherStructurePart(getCasingString(), "Top and bottom layers")
.addInfo("Each maintenance issue reduces cleaning amount by 10%").beginStructureBlock(3, 4, 3, true)
.addController("Front bottom").addOtherStructurePart(getCasingString(), "Top and bottom layers")
.addOtherStructurePart(getPipeString(), "Corners of the middle two layers")
.addOtherStructurePart("Muffler Hatch", "Sides of the middle two layers")
.addEnergyHatch("Any bottom layer casing", 1).addMaintenanceHatch("Any bottom layer casing", 1)
.addInputBus("Any bottom layer casing", 1).addOutputBus("Any bottom layer casing", 1)
.toolTipFinisher("GTNH Coremod");
.addInputBus("Any bottom layer casing", 1).addOutputBus("Any bottom layer casing", 1).toolTipFinisher();
return tt;
}

Expand Down

0 comments on commit 5c7a1bd

Please sign in to comment.