From 65b9e67991f545e41a4806b37d898d86ebf20dd7 Mon Sep 17 00:00:00 2001
From: ulteq <ulteq@web.de>
Date: Fri, 29 May 2015 20:11:07 +0200
Subject: [PATCH] Refined the abort condition for the range card calculation

---
 addons/rangecard/functions/fnc_calculateSolution.sqf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addons/rangecard/functions/fnc_calculateSolution.sqf b/addons/rangecard/functions/fnc_calculateSolution.sqf
index 3a171c4517..baaaf8506a 100644
--- a/addons/rangecard/functions/fnc_calculateSolution.sqf
+++ b/addons/rangecard/functions/fnc_calculateSolution.sqf
@@ -147,7 +147,7 @@ while {_TOF < 6 && (_bulletPos select 1) < _targetRange} do {
     _stepsTotal = _stepsTotal + 1;
     _speedAverage = (_speedTotal / _stepsTotal);
     
-    if (_speedAverage > 400 && _bulletSpeed < _speedOfSound) exitWith {};
+    if (_speedAverage > 450 && _bulletSpeed < _speedOfSound) exitWith {};
     if (atan((_bulletPos select 2) / (abs(_bulletPos select 1) + 1)) < -2.254) exitWith {};
     
     _trueVelocity = _bulletVelocity vectorDiff _wind1;