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

Hearing - Fix explosions not affecting hearing #10002

Merged
merged 10 commits into from
Aug 12, 2024
Prev Previous commit
Next Next commit
Update XEH_postInit.sqf
johnb432 committed May 9, 2024
commit 034fea91d189118d1c4d0bfe2b0f809ff64454fd
2 changes: 1 addition & 1 deletion addons/hearing/XEH_postInit.sqf
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ GVAR(lastPlayerVehicle) = objNull;
}, true] call CBA_fnc_addPlayerEventHandler;

addMissionEventHandler ["ProjectileCreated", {
params ["_projectile"];
params ["_projectile"];

_projectile addEventHandler ["Explode", {call FUNC(explosion)}];
johnb432 marked this conversation as resolved.
Show resolved Hide resolved
}];