Changeset 282 for trunk/Forms/UFormPlayers.pas
- Timestamp:
- Mar 10, 2019, 4:48:41 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormPlayers.pas
r279 r282 131 131 TempEntry.Id := Players.GetNewId; 132 132 TempEntry.Name := SPlayer + ' ' + IntToStr(TempEntry.Id); 133 TempEntry.Color := PlayerColors[Players.Count]; 133 TempEntry.Nation := Core.Game.GameSystem.Nations.First; 134 TempEntry.Color := TempEntry.Nation.Color; 134 135 TempEntry.Mode := pmComputer; 135 136 TempEntry.Agressivity := caMedium; … … 204 205 Item.SubItems.Add(PlayerModeText[Mode]); 205 206 Item.SubItems.Add(''); // Do not show color text 207 if Assigned(Nation) then Item.SubItems.Add(Nation.Name) 208 else Item.SubItems.Add(''); 206 209 Item.SubItems.Add(IntToStr(StartUnits)); 207 210 end;
Note:
See TracChangeset
for help on using the changeset viewer.