mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
replace private with private keyword in first half of common
This commit is contained in:
@ -15,9 +15,7 @@
|
||||
|
||||
params ["_array", "_value"];
|
||||
|
||||
private ["_min", "_max"];
|
||||
|
||||
_min = _array select floor _value;
|
||||
_max = _array select ceil _value;
|
||||
private _min = _array select floor _value;
|
||||
private _max = _array select ceil _value;
|
||||
|
||||
_min + (_max - _min) * (_value % 1) // return
|
||||
|
Reference in New Issue
Block a user