From ccb05f8bc793287222e131d5c26af9f2ffefcc66 Mon Sep 17 00:00:00 2001 From: johnb432 <58661205+johnb432@users.noreply.github.com> Date: Fri, 30 Aug 2024 05:38:55 -0700 Subject: [PATCH] Update addons/csw/functions/fnc_proxyWeapon.sqf Co-authored-by: PabstMirror --- addons/csw/functions/fnc_proxyWeapon.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/csw/functions/fnc_proxyWeapon.sqf b/addons/csw/functions/fnc_proxyWeapon.sqf index ee27b69bb7..700dc2b371 100644 --- a/addons/csw/functions/fnc_proxyWeapon.sqf +++ b/addons/csw/functions/fnc_proxyWeapon.sqf @@ -23,7 +23,7 @@ TRACE_4("proxyWeapon",_vehicle,_turret,_needed,_emptyWeapon); // addWeaponTurret/removeWeaponTurret need to be executed where turret is local if !(_vehicle turretLocal _turret) exitWith { - TRACE_1("turret not local",_vehicle); + WARNING_1("[%1]'s turret [%2] isn't local, skipping proxy weapon change",_vehicle,_turret); }; if (_vehicle getVariable [format [QGVAR(proxyHandled_%1), _turret], false]) exitWith { TRACE_1("already handled",typeOf _vehicle); };