Fix missing comma

This commit is contained in:
jonpas 2016-03-05 18:02:21 +01:00
parent 015a60e6c4
commit 589ca27b60

View File

@ -77,7 +77,7 @@ private _maxFuel = getNumber (configFile >> "CfgVehicles" >> (typeOf _target) >>
_unit setVariable [QGVAR(tempFuel), _fuelInSink];
if !(local _sink) then {
["setFuel", _sink [_sink, _fuelInSink]] call EFUNC(common,targetEvent);
["setFuel", _sink, [_sink, _fuelInSink]] call EFUNC(common,targetEvent);
} else {
_sink setFuel _fuelInSink;
};