Skip to content

Commit

Permalink
Merge pull request #4181 from kuronekochomusuke/missingGoodCrits
Browse files Browse the repository at this point in the history
fix issue with missing good crits when there are bad crits
  • Loading branch information
Windchild292 authored Feb 19, 2023
2 parents 6a67d42 + 7485be9 commit 66ae2db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ private static StringBuilder systemBar(int good, int bad, boolean destroyed) {
}
if (bad > 0) {
String sBad =repeat(dChar, bad);
result = guiScaledFontHTML(colorDamaged, TT_SMALLFONT_DELTA) + sBad + "</FONT>";
result += guiScaledFontHTML(colorDamaged, TT_SMALLFONT_DELTA) + sBad + "</FONT>";
}
return new StringBuilder().append(result);
}
Expand Down

0 comments on commit 66ae2db

Please sign in to comment.