hedgewars/uTeams.pas
changeset 2124 d39c61eaca15
parent 2042 905c554d62e6
child 2152 a2811690da1b
--- a/hedgewars/uTeams.pas	Wed May 27 03:48:59 2009 +0000
+++ b/hedgewars/uTeams.pas	Wed May 27 03:52:07 2009 +0000
@@ -93,6 +93,7 @@
 	TeamsCount: Longword = 0;
 	ClansArray: array[0..Pred(cMaxTeams)] of PClan;
 	ClansCount: Longword = 0;
+	LocalClan: Longword = 0;  // first non-bot, non-extdriven clan
 	CurMinAngle, CurMaxAngle: Longword;
 
 function  AddTeam(TeamColor: Longword): PTeam;
@@ -307,6 +308,8 @@
 for t:= 0 to Pred(TeamsCount) do
    with TeamsArray[t]^ do
       begin
+      if (not ExtDriven) and (Hedgehogs[0].BotLevel = 0) then
+          LocalClan:= Clan^.ClanIndex + 1;
       th:= 0;
       for i:= 0 to cMaxHHIndex do
           if Hedgehogs[i].Gear <> nil then