From b0df4c7f51879d1241454f6fd63022e74224b030 Mon Sep 17 00:00:00 2001 From: icomrade Date: Tue, 3 May 2016 13:50:59 -0400 Subject: [PATCH] Fix unlocking vehicles after adding plot for life --- SQF/dayz_code/compile/fn_selfActions.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/compile/fn_selfActions.sqf b/SQF/dayz_code/compile/fn_selfActions.sqf index 010e791df..619ec0136 100644 --- a/SQF/dayz_code/compile/fn_selfActions.sqf +++ b/SQF/dayz_code/compile/fn_selfActions.sqf @@ -438,7 +438,7 @@ if (!isNull _cursorTarget && !_inVehicle && !_isPZombie && (player distance _cur }; if (_isVehicle) then { - if ((_ownerID != "0") && {!_isMan} && {!_isBicycle}) then { + if ((_characterID != "0") && {!_isMan} && {!_isBicycle}) then { _player_lockUnlock_crtl = true; }; };