Skip to content

Commit

Permalink
Better display of radical heat sinking in RS
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbraginskiy committed Sep 24, 2024
1 parent 1b95553 commit 737990c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megameklab/src/megameklab/printing/PrintEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected boolean showHeatProfile() {
*/
protected String heatProfileText() {
int heat = getEntity().getEquipment().stream().mapToInt(m -> m.getType().getHeat()).sum();
return "Total Heat (Dissipation): " + heat + " (" + getEntity().getHeatCapacity() + ")";
return "Total Heat (Dissipation): " + heat + " (" + getEntity().formatHeat() + ")";
}

/**
Expand Down

0 comments on commit 737990c

Please sign in to comment.