diff --git a/Tactical/LOS.cpp b/Tactical/LOS.cpp index ca12ebe5..d62fa3df 100644 --- a/Tactical/LOS.cpp +++ b/Tactical/LOS.cpp @@ -768,11 +768,12 @@ INT32 LineOfSightTest( FLOAT dStartX, FLOAT dStartY, FLOAT dStartZ, FLOAT dEndX, } //ADB remove this check since I might have a scope that allows me to see past this arbitrary limit - //if ( iDistance > iSightLimit) - //{ - // out of visual range - // return( 0 ); - //} + //Lalien: just removing this check removes visibility limit completly + if ( iDistance > iSightLimit) + { + //out of visual range + return( 0 ); + } ddHorizAngle = atan2( dDeltaY, dDeltaX );