mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ATragMX - Truing Drop fix (#4704)
* Fixes a bug in the truing drop feature that occurs when the zero range is greater than the truing range
This commit is contained in:
parent
a6fa317d93
commit
b2ba95913a
@ -34,8 +34,8 @@ if (_parseInput) then {
|
||||
|
||||
_subsonicRange = _transonicRange max _subsonicRange;
|
||||
|
||||
_transonicDrop = 0 max abs(parseNumber(ctrlText 18013)) min 1000;
|
||||
_subsonicDrop = 0 max abs(parseNumber(ctrlText 18014)) min 1000;
|
||||
_transonicDrop = -100 max parseNumber(ctrlText 18013) min 100;
|
||||
_subsonicDrop = -100 max parseNumber(ctrlText 18014) min 100;
|
||||
private _dropUnit = GVAR(currentScopeUnit);
|
||||
if (_dropUnit == 3) then {
|
||||
switch (GVAR(currentScopeClickUnit)) do {
|
||||
|
Loading…
Reference in New Issue
Block a user