Skip to content

Commit

Permalink
fix engine start delay turning viv laoded vehicle when starting the e…
Browse files Browse the repository at this point in the history
…ngine
  • Loading branch information
commy2 authored Oct 6, 2018
1 parent c435aac commit 90a9ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/vehicles/functions/fnc_startEngine.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

params ["_vehicle", "_isEngineOn"];

if (!_isEngineOn || {floor abs speed _vehicle > 0}) exitWith {};
if (!_isEngineOn || {floor abs speed _vehicle > 0 || {!isNull isVehicleCargo _vehicle}}) exitWith {};

[{
params ["_args", "_idPFH"];
Expand Down

0 comments on commit 90a9ce1

Please sign in to comment.