Skip to content

Commit

Permalink
(#642): fixed incorrect variable name in BLWK_fnc_overrunWave_onWaveInit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ansible2 committed Jul 22, 2023
1 parent f7c57f9 commit 551fc0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ missionNamespace setVariable ["BLWK_enforceArea",false,true];
[
{
private _playerSpawnPosition = localNamespace getVariable "BLWK_overrunWave_playerSpawn";
BLWK_mainCrate setPosATL _playerPosition;
BLWK_mainCrate setPosATL _playerSpawnPosition;

(call CBAP_fnc_players) apply {
// don't teleport players in vehicles
if (isNull (objectParent _x)) then {
_x setPosATL (
[_playerPosition,15,random 360] call CBAP_fnc_randPos
[_playerSpawnPosition,15,random 360] call CBAP_fnc_randPos
);
};
};
Expand Down

0 comments on commit 551fc0c

Please sign in to comment.