diff --git a/addons/legacy/functions/fnc_globalSpawnPass.sqf b/addons/legacy/functions/fnc_globalSpawnPass.sqf index 8e06dfbc..91e06a3a 100644 --- a/addons/legacy/functions/fnc_globalSpawnPass.sqf +++ b/addons/legacy/functions/fnc_globalSpawnPass.sqf @@ -15,7 +15,7 @@ if ((count (entities "HeadlessClient_F") > 0) && CBA_missionTime < 10) exitWith private _hcs = (entities "HeadlessClient_F") arrayIntersect allPlayers; if (count _hcs > 0) then { - [QGVAR(globalSpawn), [], _hcs] call CBA_fnc_targetEvent; + [QGVAR(globalSpawn), [], selectRandom _hcs] call CBA_fnc_targetEvent; } else { [QGVAR(globalSpawn), []] call CBA_fnc_serverEvent; }; diff --git a/addons/main/script_version.hpp b/addons/main/script_version.hpp index d61c07ce..176da1ab 100644 --- a/addons/main/script_version.hpp +++ b/addons/main/script_version.hpp @@ -1,4 +1,4 @@ #define MAJOR 5 #define MINOR 0 #define PATCH 0 -#define BUILD 2 +#define BUILD 3