Changeset 274 for trunk/GameServer.pas


Ignore:
Timestamp:
Aug 4, 2020, 5:25:33 PM (4 years ago)
Author:
chronos
Message:
  • Added: Small Tutorial map.
  • Fixed: StdAI possible range check error.
  • Fixed: Exception in counting human players from assigned players brains for predefined maps.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GameServer.pas

    r235 r274  
    863863    Human := 0;
    864864    for p1 := 0 to nPl - 1 do
    865       if bix[p1].Kind = btTerm then
     865      if Assigned(bix[p1]) and (bix[p1].Kind = btTerm) then
    866866        inc(Human, 1 shl p1);
    867867    InitMapGame(Human);
Note: See TracChangeset for help on using the changeset viewer.