From 99cd64c73b989a8cf04d54936146e89b50682a03 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Mon, 2 May 2016 14:28:58 -0400 Subject: [PATCH] Removed Logging from Temperature system. Vanilla development commit: https://github.com/DayZMod/DayZ/commit/166ae0219cc415be56ee145020468cd047d40fe2 --- SQF/dayz_code/compile/fn_temperatur.sqf | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/SQF/dayz_code/compile/fn_temperatur.sqf b/SQF/dayz_code/compile/fn_temperatur.sqf index eb67e0a2c..ce230e9c5 100644 --- a/SQF/dayz_code/compile/fn_temperatur.sqf +++ b/SQF/dayz_code/compile/fn_temperatur.sqf @@ -171,7 +171,4 @@ _difference = _difference * SleepTemperatur / (60 / _looptime) * ((dayz_temperat if (dayz_temperature_override) then { _difference = 0; if (dayz_temperatur < 37) then { dayz_temperatur = 37; } }; //Change Temperatur Should be moved in a own Function to allow adding of Items which increase the Temp like "hot tea" -dayz_temperatur = (((dayz_temperatur + _difference) max dayz_temperaturmin) min dayz_temperaturmax); - - -//systemChat format["%1 - %2",dayz_temperatur,_difference]; \ No newline at end of file +dayz_temperatur = (((dayz_temperatur + _difference) max dayz_temperaturmin) min dayz_temperaturmax); \ No newline at end of file