From 1926b758cf19528f8b3a33cd5fe5d9fbf712c1d5 Mon Sep 17 00:00:00 2001 From: Ghostrider-DbD- Date: Mon, 6 Feb 2017 01:01:29 -0500 Subject: [PATCH] Update GMS_fnc_Time.sqf disabled some report logging. --- .../addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf b/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf index dd8aa9f..f8a942b 100644 --- a/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf +++ b/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf @@ -22,13 +22,13 @@ _time = dayTime; // Night if (_time > (_sunset + 0.5) || _time < (_sunrise - 0.5)) exitWith { setTimeMultiplier blck_timeAccelerationNight; - diag_log format["NIGHT TIMGE ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime]; + //diag_log format["NIGHT TIMGE ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime]; }; // Day if (_time > (_sunrise + 0.5) && _time < (_sunset - 0.5)) exitWith { setTimeMultiplier blck_timeAccelerationDay; - diag_log format["DAYTIME ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime]; + //diag_log format["DAYTIME ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime]; }; // default