From fabd9c5fdba4d7e2de63fb17a9eefe32798f82bd Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Mon, 21 Aug 2023 14:23:21 -0500 Subject: [PATCH] Weather - Fix number in `fnc_calculateWindChill.sqf` (#9340) Update fnc_calculateWindChill.sqf --- addons/weather/functions/fnc_calculateWindChill.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/weather/functions/fnc_calculateWindChill.sqf b/addons/weather/functions/fnc_calculateWindChill.sqf index f657cba638..ffb93db9d3 100644 --- a/addons/weather/functions/fnc_calculateWindChill.sqf +++ b/addons/weather/functions/fnc_calculateWindChill.sqf @@ -23,5 +23,5 @@ params ["_t", "_v"]; if (_t > 10) exitWith { _t }; if (_v < 1.39) exitWith { _t }; -_v = _v * 3,6; // wind speed in km/h +_v = _v * 3.6; // wind speed in km/h (13.12 + 0.6215 * _t - 11.37 * _v ^ 0.16 + 0.3965 * _t * _v ^ 0.16)