Remove brackets

This commit is contained in:
GitHawk 2016-02-25 10:11:28 +01:00
parent 53457cfe61
commit 5af31f6bb3

View File

@ -60,7 +60,7 @@ while {(_closeInMax - _closeInMin) > 0.01} do {
_closeInDistance = (_closeInMax + _closeInMin) / 2;
//Checks (too close to center or can't attach)
if (((_startDistanceFromCenter - _closeInDistance) < 0.1)) exitWith {
if ((_startDistanceFromCenter - _closeInDistance) < 0.1) exitWith {
TRACE_2("no valid spot found",_closeInDistance,_startDistanceFromCenter);
[localize LSTRING(Failed)] call EFUNC(common,displayTextStructured);
};