From 7aa48b803580d1933cbac844ddafcb84b88de1be Mon Sep 17 00:00:00 2001 From: johnb432 <58661205+johnb432@users.noreply.github.com> Date: Sat, 7 Feb 2026 15:05:24 +0100 Subject: [PATCH] Stop applying scope offsets to secondary muzzles --- addons/scopes/functions/fnc_firedEH.sqf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/scopes/functions/fnc_firedEH.sqf b/addons/scopes/functions/fnc_firedEH.sqf index cade0fe7244..12339884699 100644 --- a/addons/scopes/functions/fnc_firedEH.sqf +++ b/addons/scopes/functions/fnc_firedEH.sqf @@ -20,6 +20,9 @@ TRACE_10("firedEH:",_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile,_veh if !(_ammo isKindOf "BulletBase") exitWith {}; +// Ignore secondary muzzles +if (_weapon != _muzzle) exitWith {}; + private _weaponIndex = [_unit, currentWeapon _unit] call EFUNC(common,getWeaponIndex); if (_weaponIndex < 0) exitWith {};