Skip to content

Commit

Permalink
fixed the issue of missing ]
Browse files Browse the repository at this point in the history
  • Loading branch information
HikariCalyx committed May 21, 2024
1 parent f72e182 commit 23a08d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WzComparerR2/CharaSimControl/MobTooltipRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public override Bitmap Render()
}
if (MobInfo.FixedDamage > 0)
{
sbExt.Append("[固定ダメージ: " + ToCJKNumberExpr(MobInfo.FixedDamage));
sbExt.Append("[固定ダメージ: " + ToCJKNumberExpr(MobInfo.FixedDamage) + "] ");
}
if (MobInfo.FixedBodyAttackDamageR > 0)
{
Expand Down

0 comments on commit 23a08d2

Please sign in to comment.