Skip to content

Commit

Permalink
pull changes from upstream #1710
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Aug 15, 2021
1 parent 0ef0b33 commit 826556a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ protected void addDisplayText(List<ITextComponent> textList) {
MIN_DURABILITY_TO_WARN, rotorDurability).setStyle(new Style().setColor(TextFormatting.RED)));
}
}
if(!isRotorFaceFree()) {
textList.add(new TextComponentTranslation("gregtech.multiblock.turbine.obstructed")
.setStyle(new Style().setColor(TextFormatting.RED)));
}
}
super.addDisplayText(textList);
}
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/gregtech/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -3671,6 +3671,7 @@ gregtech.multiblock.turbine.rotor_speed=Rotor Speed: %s / %s RPM
gregtech.multiblock.turbine.rotor_efficiency=Rotor Efficiency: %s%%
gregtech.multiblock.turbine.rotor_durability=Rotor Durability: %s%%
gregtech.multiblock.turbine.low_rotor_durability=WARNING: Rotor Durability below %s%% (%s%%)
gregtech.multiblock.turbine.obstructed=Turbine Face Obstructed

gregtech.multiblock.large_boiler.temperature=Temperature: %s / %s C
gregtech.multiblock.large_boiler.steam_output=Steam Output: %s L/t
Expand Down

0 comments on commit 826556a

Please sign in to comment.