mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix statBarStatement still using AI values for firemodes (#7163)
This commit is contained in:
commit
9d0e474cf5
@ -18,18 +18,19 @@
|
||||
|
||||
params ["_stat", "_config", "_args"];
|
||||
_args params ["_statMinMax", "_barLimits"];
|
||||
TRACE_4("statBarStatement_accuracy",_stat,_config,_statMinMax,_barLimits);
|
||||
|
||||
private _fireModes = getArray (_config >> "modes");
|
||||
private _dispersion = [];
|
||||
|
||||
{
|
||||
private _n = log (getNumber (_config >> _x >> "dispersion"));
|
||||
if (!finite _n) then {_n = 0;};
|
||||
_dispersion pushBackUnique _n;
|
||||
if (getNumber (_config >> _x >> "showToPlayer") != 0) then {
|
||||
private _n = log (getNumber (_config >> _x >> "dispersion"));
|
||||
|
||||
if (!finite _n) then {_n = 0;};
|
||||
_dispersion pushBackUnique _n;
|
||||
};
|
||||
} foreach _fireModes;
|
||||
|
||||
_dispersion sort true;
|
||||
TRACE_1("",_dispersion);
|
||||
|
||||
linearConversion [_statMinMax select 0, _statMinMax select 1, _dispersion param [0, 0], _barLimits select 0, _barLimits select 1]
|
||||
|
Loading…
Reference in New Issue
Block a user