mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Update fnc_onButtonClickConfirm.sqf
Fixed mistake that added offset twice
This commit is contained in:
parent
9b5ee1bf70
commit
9ee9c62535
@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user