mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fix bug which would cause unecessary echo network traffic (#4242)
This commit is contained in:
parent
84a370d0f2
commit
2231464087
@ -20,7 +20,9 @@ params ["_vehicle"];
|
||||
if (_vehicle getVariable [QGVAR(isEngineSmoking), false]) exitWith {};
|
||||
_vehicle setVariable [QGVAR(isEngineSmoking), true];
|
||||
|
||||
[QGVAR(engineFire), _vehicle] call CBA_fnc_remoteEvent;
|
||||
if (local _vehicle) then {
|
||||
[QGVAR(engineFire), _vehicle] call CBA_fnc_remoteEvent;
|
||||
};
|
||||
|
||||
private _position = [
|
||||
0,
|
||||
|
Loading…
Reference in New Issue
Block a user