Ignore:
Timestamp:
May 22, 2018, 10:10:54 AM (6 years ago)
Author:
chronos
Message:
  • Added: Show number of captured win objective cells in players stats and graphs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormPlayersStats.pas

    r190 r208  
    5757    Item.SubItems.Add(IntToStr(TotalCities));
    5858    Item.SubItems.Add(IntToStr(TotalUnits));
     59    Item.SubItems.Add(IntToStr(TotalWinObjectiveCells));
    5960  end;
    6061end;
     
    7374      4: Result := CompareInteger(TPlayer(Item1).TotalCities, TPlayer(Item2).TotalCities);
    7475      5: Result := CompareInteger(TPlayer(Item1).TotalUnits, TPlayer(Item2).TotalUnits);
     76      6: Result := CompareInteger(TPlayer(Item1).TotalWinObjectiveCells, TPlayer(Item2).TotalWinObjectiveCells);
    7577    end;
    7678    if ListViewSort1.Order = soDown then Result := -Result;
Note: See TracChangeset for help on using the changeset viewer.