Update fnc_onButtonClickConfirm.sqf

Fixed mistake that added offset twice
This commit is contained in:
DanielH 2023-01-09 20:33:52 +01:00 committed by GitHub
parent 9b5ee1bf70
commit 9ee9c62535
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,10 +43,10 @@ if (cbChecked _aceTimestamp && {
systemTimeUTC params["", "", "", "_hour", "_min", "_sec"];
_hour = _hour + _offset;
if (_hour < 0) then {
_hour= 24 - (_hour + _offset);
_hour = 24 - _hour;
};
if (_hour > 24) then {
_hour = 0 + ((_hour + _offset) - 24);
_hour = 0 + (_hour - 24);
};
_time = _hour + _min/60 + _sec/3600;
};
@ -78,4 +78,4 @@ if (cbChecked _aceTimestamp && {
[_time, GVAR(timestampFormat)] call BIS_fnc_timeToString,
_periodPostfix
];
};
};