From 89a43cad8a74cbb4eb19545f2dde6003692fe91c Mon Sep 17 00:00:00 2001 From: ebayShopper Date: Sun, 19 Nov 2017 10:31:51 -0500 Subject: [PATCH] Update vanilla vehicle_getOut log Vanilla commits: https://github.com/DayZMod/DayZ/commit/403861fa1ae07c4f42e07a60bf687986092cca10 https://github.com/DayZMod/DayZ/commit/b4798403a8d18ce113fd49083cffe5539436f049 --- SQF/dayz_code/compile/vehicle_getOut.sqf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_code/compile/vehicle_getOut.sqf b/SQF/dayz_code/compile/vehicle_getOut.sqf index 82fd0c48e..edcc67dfb 100644 --- a/SQF/dayz_code/compile/vehicle_getOut.sqf +++ b/SQF/dayz_code/compile/vehicle_getOut.sqf @@ -39,7 +39,7 @@ if (_unit == player) then { }; //Log to server RPT (could give false pos) - should help admins see who is trying to abuse this. - PVDZ_Server_LogIt = format["Player %1 exited a vehicle(%2) close to buildable object as %3",_unit, (typeof _vehicle), _position]; + PVDZ_Server_LogIt = format["Player %1 exited a %2 close to buildable object as %3",_unit, (typeof _vehicle), _position]; publicVariableServer "PVDZ_Server_LogIt"; localize "str_actions_exitBlocked" call dayz_rollingMessages; @@ -51,7 +51,7 @@ if (_unit == player) then { if (((speed _vehicle) > 15) or ((speed _vehicle) < -10)) then { dayz_getoutTime = diag_tickTime; }; -}; -//Debug Info -//diag_log format["%1(%4) - %2 - %3, (playerPos: %5, ExitPos: %6, IntersectsWith: %7)",_vehicle,_position,_unit,(speed _vehicle),_playerPos,_exitPosition,_intersectsWith]; \ No newline at end of file + //Debug Info + //diag_log format["%1(%4) - %2 - %3, (playerPos: %5, ExitPos: %6, IntersectsWith: %7)",_vehicle,_position,_unit,(speed _vehicle),_playerPos,_exitPosition,_intersectsWith]; +};