From 22eca1f6cde04cf0c2abb80d3824725540b0c5e1 Mon Sep 17 00:00:00 2001 From: Jacob Schmidt Date: Sun, 26 Apr 2026 00:19:30 -0500 Subject: [PATCH] fix: update function call for taskDefend to use CFUNC --- arma/server/addons/task/functions/fnc_spawnEnemyWave.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arma/server/addons/task/functions/fnc_spawnEnemyWave.sqf b/arma/server/addons/task/functions/fnc_spawnEnemyWave.sqf index eac719a..1bc1bc5 100644 --- a/arma/server/addons/task/functions/fnc_spawnEnemyWave.sqf +++ b/arma/server/addons/task/functions/fnc_spawnEnemyWave.sqf @@ -77,7 +77,7 @@ private _groups = []; _unit enableDynamicSimulation true; }; - [_group, _center, _radius * 0.75] call CBA_fnc_taskDefend; + [_group, _center, _radius * 0.75] call CFUNC(taskDefend); } forEach _spawnPositions; ["INFO", format ["Spawned defense wave %1 for task %2 with %3 units", _waveNumber + 1, _taskID, _unitCount]] call EFUNC(common,log);