Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix non-unique global event ID usage in Toggle Lamps module #535

Merged
merged 1 commit into from
Feb 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion addons/modules/functions/fnc_moduleToggleLamps.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ deleteVehicle _logic;
{
// Prevent unnecessary events for objects with no lights
if !(_x call EFUNC(common,getLightingSelections) isEqualTo []) then {
[QEGVAR(common,setLampState), [_x, _state, _repair], _x call BIS_fnc_netId] call CBA_fnc_globalEventJIP;
private _eventID = format [QGVAR(moduleToggleLamps_%1), _x call BIS_fnc_netId];
[QEGVAR(common,setLampState), [_x, _state, _repair], _eventID] call CBA_fnc_globalEventJIP;
};
} forEach nearestObjects [_position, ["Building"], parseNumber _radius, true];
}, {}, _position] call EFUNC(dialog,create);