Skip to content

Commit c4d4c5a

Browse files
authored
Clearer morph level text
Using "morph N" is ambiguous. Morph 2 sounds like the second morph, but going to level 2 is actually the 1st morph.
1 parent dfd8b8b commit c4d4c5a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Zero-K.info/Views/My/CommanderProfile.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Commander name: @Html.TextBox("name", c != null ? c.Name : "Commander " + Model.
1717

1818
foreach (var slots in Model.Slots.GroupBy(x => x.MorphLevel).OrderBy(x => x.Key))
1919
{
20-
<h3>Morph @(slots.Key + 1):</h3>
20+
<h3>Level @(slots.Key + 1):</h3>
2121
@:Metal: @Html.PrintMetal(c.GetTotalMorphLevelCost(slots.Key) - (slots.Key > 1 ? c.GetTotalMorphLevelCost(slots.Key - 1) : 0)) <br />
2222
foreach (var slot in slots.OrderByDescending(x => x.UnlockType.ToString())) // cheap hax to make sure weapons go first
2323
{
@@ -69,4 +69,4 @@ else
6969
{
7070
@:Chassis: @Html.DropDownList("chassis", Model.Unlocks.Where(x => x.Unlock.UnlockType == ZkData.UnlockTypes.Chassis).Select(x => new SelectListItem()
7171
{ Text = x.Unlock.Name, Value = x.Unlock.UnlockID.ToString(), Selected = (c != null ? c.ChassisUnlockID == x.Unlock.UnlockID : false) }))
72-
}
72+
}

0 commit comments

Comments
 (0)