Weather - Fix number in fnc_calculateWindChill.sqf (#9340)

Update fnc_calculateWindChill.sqf
This commit is contained in:
PabstMirror 2023-08-21 14:23:21 -05:00 committed by GitHub
parent 9c25fea548
commit fabd9c5fdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)