From 78dbf9179bc7284e8f6ec83423fd62d9bc1c4f7c Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Mon, 25 Nov 2013 15:56:31 -0600 Subject: [PATCH] suppress debug from building --- SQF/dayz_code/actions/player_build.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/actions/player_build.sqf b/SQF/dayz_code/actions/player_build.sqf index bc479f208..4f84afff4 100644 --- a/SQF/dayz_code/actions/player_build.sqf +++ b/SQF/dayz_code/actions/player_build.sqf @@ -308,7 +308,7 @@ if (_hasrequireditem) then { _object setPosATL _position; - diag_log format["DEBUG Change BUILDING POS: %1", _position]; + //diag_log format["DEBUG Change BUILDING POS: %1", _position]; _object attachTo [player]; @@ -323,7 +323,7 @@ if (_hasrequireditem) then { detach _object; _dir = getDir _object; _position = getPosATL _object; - diag_log format["DEBUG BUILDING POS: %1", _position]; + //diag_log format["DEBUG BUILDING POS: %1", _position]; deleteVehicle _object; };