Disabled unnecessary logging.
This commit is contained in:
parent
bf71a97015
commit
ee50094deb
@ -22,13 +22,13 @@ _time = dayTime;
|
|||||||
// Night
|
// Night
|
||||||
if (_time > (_sunset + 0.5) || _time < (_sunrise - 0.5)) exitWith {
|
if (_time > (_sunset + 0.5) || _time < (_sunrise - 0.5)) exitWith {
|
||||||
setTimeMultiplier blck_timeAccelerationNight;
|
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
|
// Day
|
||||||
if (_time > (_sunrise + 0.5) && _time < (_sunset - 0.5)) exitWith {
|
if (_time > (_sunrise + 0.5) && _time < (_sunset - 0.5)) exitWith {
|
||||||
setTimeMultiplier blck_timeAccelerationDay;
|
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
|
// default
|
||||||
|
Loading…
Reference in New Issue
Block a user