Skip to content

Commit

Permalink
Updated CM text when resolving fight name
Browse files Browse the repository at this point in the history
  • Loading branch information
Plenyx committed Mar 26, 2024
1 parent 14b4c5b commit 312c8e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DpsReport/BossData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ internal string FightName(DpsReportJson reportJSON)
{
if (reportJSON?.ExtraJson?.IsLegendaryCm ?? false)
{
builder.Append("Legendary ");
builder.Append(" Legendary");
}
builder.Append("CM");
builder.Append(" CM");
}
return builder.ToString();
}
Expand Down

0 comments on commit 312c8e4

Please sign in to comment.