Skip to content

Commit

Permalink
Fix steam consumption and improve tooltip of steam water pump (GTNewH…
Browse files Browse the repository at this point in the history
…orizons#2780)

fix oversight and improve tooltip
  • Loading branch information
chochem authored Jul 28, 2024
1 parent 1242b6c commit b67f335
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public String getMachineType() {
private static final int BASE_WATER_PER_SECOND = 1_500;
private static final int PROGRESSION_TIME_TICKS = 20;

private static final int BASE_STEAM_PER_SECOND = 400;
private static final int BASE_STEAM_PER_SECOND = 1_500;

private int mSetTier = 1;

Expand Down Expand Up @@ -236,25 +236,25 @@ protected GT_Multiblock_Tooltip_Builder createTooltip() {
GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder();
tt.addMachineType(getMachineType())
.addInfo("Controller Block for the Water Pump")
.addInfo("Generates water based on biome humidity")
.addInfo("Pumps Water based on humidity")
.addInfo("Has 2 tiers: Bronze and Steel")
.addInfo("Steel tier extracts 2x water")
.addInfo("Steel tier extracts 2x Water")
.addInfo(
EnumChatFormatting.AQUA + "Generates: "
+ EnumChatFormatting.WHITE
+ " humidity * Tier * "
+ " humidity * tier * "
+ BASE_WATER_PER_SECOND
+ " L/s"
+ EnumChatFormatting.AQUA
+ " of water."
+ " of Water."
+ EnumChatFormatting.RESET)
.addInfo(
EnumChatFormatting.RED + "Consumes: "
+ EnumChatFormatting.WHITE
+ BASE_STEAM_PER_SECOND
+ " L/s"
+ EnumChatFormatting.RED
+ " of steam."
+ " of Steam."
+ EnumChatFormatting.RESET)
.addSeparator()
.beginStructureBlock(3, 3, 5, false)
Expand Down

0 comments on commit b67f335

Please sign in to comment.