From 5484cdcee9cba6f3cd93d9c857dd47e802fea883 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Mon, 16 May 2022 01:54:06 -0500 Subject: [PATCH] AI - Add basic delay for `CBA_fnc_searchNearby` while loop Co-Authored-By: mrzachhiggins <53547287+mrzachhigginsofficial@users.noreply.github.com> --- addons/ai/fnc_searchNearby.sqf | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/ai/fnc_searchNearby.sqf b/addons/ai/fnc_searchNearby.sqf index 524cd8143f..1a1c6d8774 100644 --- a/addons/ai/fnc_searchNearby.sqf +++ b/addons/ai/fnc_searchNearby.sqf @@ -66,6 +66,7 @@ if ((leader _group) distanceSqr _building > 250e3) exitwith {}; sleep 2; }; } forEach _units; + sleep 0.25; }; _group lockWP false; };