diff -r a9873c81b5e6 -r 1a754860b0e5 hedgewars/uGearsUtils.pas --- a/hedgewars/uGearsUtils.pas Sat May 25 18:18:42 2019 +0300 +++ b/hedgewars/uGearsUtils.pas Sun May 26 14:16:35 2019 +0200 @@ -1869,7 +1869,7 @@ function IsHogLocal(HH: PHedgehog): boolean; begin - IsHogLocal:= (not (HH^.Team^.ExtDriven or (HH^.BotLevel > 0))) or (HH^.Team^.Clan^.ClanIndex = LocalClan) or (GameType = gmtDemo); + IsHogLocal:= (not (HH^.Team^.ExtDriven or (HH^.BotLevel > 0))) or (HH^.Team^.Clan^.LocalOrAlly) or (GameType = gmtDemo); end; end.