Skip to content

Commit d5f0d68

Browse files
committed
Correct morph level indicator on commanders page
1 parent 48d1a32 commit d5f0d68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
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:</h3>
20+
<h3>Morph @(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
{

0 commit comments

Comments
 (0)