Skip to content

Commit

Permalink
Merge pull request #1621 from pavelbraginskiy/pretty-print-heat
Browse files Browse the repository at this point in the history
Better display of radical heat sinking in RS
  • Loading branch information
rjhancock authored Sep 28, 2024
2 parents 1b95553 + 737990c commit 12e7537
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 12e7537

Please sign in to comment.