diff --git a/conmap.pp b/conmap.pp index de9fb04..19fc3f2 100644 --- a/conmap.pp +++ b/conmap.pp @@ -557,7 +557,7 @@ procedure IndicateTile( GB: GameBoardPtr; Mek: GearPtr ); M2 := M2^.Next; end; - if NAttValue( Mek^.NA , NAG_Location , NAS_Team ) = NAV_DefPlayerTeam then begin + if (NAttValue( Mek^.NA , NAG_Location , NAS_Team ) = NAV_DefPlayerTeam) or (NAttValue( Mek^.NA , NAG_Location , NAS_Team ) = NAV_LancemateTeam) then begin CheckVisibleArea( GB , Mek ); end; diff --git a/sdlmap.pp b/sdlmap.pp index 3a41015..26f1cdc 100644 --- a/sdlmap.pp +++ b/sdlmap.pp @@ -923,7 +923,7 @@ procedure IndicateTile( GB: GameBoardPtr; X,Y: Integer ); M2 := M2^.Next; end; - if NAttValue( Mek^.NA , NAG_Location , NAS_Team ) = NAV_DefPlayerTeam then begin + if (NAttValue( Mek^.NA , NAG_Location , NAS_Team ) = NAV_DefPlayerTeam) or (NAttValue( Mek^.NA , NAG_Location , NAS_Team ) = NAV_LancemateTeam) then begin CheckVisibleArea( GB , Mek ); end; end;