Changeset 274
- Timestamp:
- Aug 4, 2020, 5:25:33 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AI/StdAI/Barbarina.pas
r160 r274 982 982 if RO.nEnemyUn>0 then 983 983 begin 984 fillchar(euixMap, MapSize*2, $FF FF);984 fillchar(euixMap, MapSize*2, $FF); 985 985 fillchar(AttackScore,RO.nEnemyUn*4,0); 986 986 for euix:=0 to RO.nEnemyUn-1 do with RO.EnemyUn[euix] do -
trunk/GameServer.pas
r235 r274 863 863 Human := 0; 864 864 for p1 := 0 to nPl - 1 do 865 if bix[p1].Kind = btTermthen865 if Assigned(bix[p1]) and (bix[p1].Kind = btTerm) then 866 866 inc(Human, 1 shl p1); 867 867 InitMapGame(Human);
Note:
See TracChangeset
for help on using the changeset viewer.